This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
singular.cpp
367 lines (328 loc) · 12.6 KB
/
singular.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
#include "includes.h"
#include "coeffs.h"
#include "rings.h"
#include "ideals.h"
#include "matrices.h"
#include "caller.h"
#include "coeff_rings.h"
static std::string singular_return;
static std::string singular_error;
static std::string singular_warning;
static std::vector<std::string> singular_error_log;
// Internal singular interpreter variable
extern int inerror;
// these are the temporary callbacks for calls to the interpreter
static void WerrorS_for_julia(const char * s)
{
singular_error += s;
}
static void PrintS_for_julia(const char * s)
{
singular_return += s;
}
static void WarningS_for_julia(const char * s)
{
singular_warning += s;
}
/*
This is the non-temporary callback for all errors (unless the temporary
ones are in use by call_interpreter). We would like to simultaneously:
1. be able to check and report errors via libSingular.check_error()
2. know when errors have been generated but uncaught by the julia code so
that libSingular.check_error() can be inserted into the right place
Unfortunately, a single call to the Singular kernel can generate multiple
calls to WerrorS_callback, thus we don't know if previous errors were
generated as a result of a missing libSingular.check_error() or if Singular
has just called WerrorS_callback 10 times in the same function.
The compromise here is to keep the full backlog of unreported errors and
start complaining to stderr once the backlog gets too long.
*/
static void WerrorS_and_reset(const char * s)
{
errorreported = 0;
if (singular_error_log.size() > 9)
{
for (auto & si : singular_error_log)
std::cerr << si << std::endl;
std::cerr << "!!! Singular error(s) unhandled by julia !!!" << std::endl << std::endl;
}
singular_error_log.emplace_back(s);
}
JLCXX_MODULE define_julia_module(jlcxx::Module & Singular)
{
Singular.add_type<n_Procs_s>("coeffs");
Singular.add_bits<n_coeffType>("n_coeffType");
Singular.set_const("n_Z", n_Z);
Singular.set_const("n_Q", n_Q);
Singular.set_const("n_Zn", n_Zn);
Singular.set_const("n_Zp", n_Zp);
Singular.set_const("n_GF", n_GF);
Singular.set_const("n_transExt", n_transExt);
Singular.set_const("n_unknown", n_unknown);
Singular.add_type<snumber>("number");
Singular.add_type<__mpz_struct>("__mpz_struct");
Singular.add_type<ip_sring>("ring");
Singular.add_type<spolyrec>("poly");
// Singular.add_type<nMapFunc>("nMapFunc");
// Singular.add_type<spolyrec>("vector");
Singular.add_bits<rRingOrder_t>("rRingOrder_t");
Singular.add_type<sip_sideal>("ideal");
Singular.add_type<ip_smatrix>("ip_smatrix");
Singular.add_type<ssyStrategy>("syStrategy");
Singular.add_type<sip_smap>("sip_smap");
Singular.add_type<bigintmat>("bigintmat");
/* monomial orderings */
Singular.set_const("ringorder_no", ringorder_no);
Singular.set_const("ringorder_lp", ringorder_lp);
Singular.set_const("ringorder_rp", ringorder_rp);
Singular.set_const("ringorder_dp", ringorder_dp);
Singular.set_const("ringorder_Dp", ringorder_Dp);
Singular.set_const("ringorder_wp", ringorder_wp);
Singular.set_const("ringorder_Wp", ringorder_Wp);
Singular.set_const("ringorder_ls", ringorder_ls);
Singular.set_const("ringorder_rs", ringorder_rs);
Singular.set_const("ringorder_ds", ringorder_ds);
Singular.set_const("ringorder_Ds", ringorder_Ds);
Singular.set_const("ringorder_ws", ringorder_ws);
Singular.set_const("ringorder_Ws", ringorder_Ws);
Singular.set_const("ringorder_a", ringorder_a);
Singular.set_const("ringorder_M", ringorder_M);
Singular.set_const("ringorder_c", ringorder_c);
Singular.set_const("ringorder_C", ringorder_C);
Singular.set_const("ringorder_s", ringorder_s);
Singular.set_const("ringorder_S", ringorder_S);
Singular.set_const("ringorder_IS", ringorder_IS);
Singular.method("ringorder_to_int", [](rRingOrder_t a) {
return static_cast<int>(a);
});
Singular.method("ringorder_from_int", [](int a) {
return static_cast<rRingOrder_t>(a);
});
Singular.method("siInit", [](const char * path) {
siInit(const_cast<char *>(path));
WerrorS_callback = WerrorS_and_reset;
});
Singular.method("versionString", []() {
return const_cast<const char *>(versionString());
});
Singular.method("version", []() {
return SINGULAR_VERSION;
});
Singular.method("have_error", []() {
return !singular_error_log.empty();
});
Singular.method("get_and_clear_error", []() {
std::stringstream ss;
for (auto & si : singular_error_log)
ss << si << std::endl;
singular_error_log.clear();
return ss.str();
});
#define SETTER(A, B) \
else if (opt == #B) \
{ \
old_value = (A & Sy_bit(B)) != 0; \
A = value ? (A | Sy_bit(B)) : (A & ~Sy_bit(B)); \
}
// all of the global setters return the previous value
Singular.method("set_option", [](std::string opt, bool value)
{
bool old_value = false;
if (false);
SETTER(si_opt_2, V_QUIET)
SETTER(si_opt_2, V_QRING)
SETTER(si_opt_2, V_SHOW_MEM)
SETTER(si_opt_2, V_YACC)
SETTER(si_opt_2, V_REDEFINE)
SETTER(si_opt_2, V_LOAD_LIB)
SETTER(si_opt_2, V_DEBUG_LIB)
SETTER(si_opt_2, V_LOAD_PROC)
SETTER(si_opt_2, V_DEF_RES)
SETTER(si_opt_2, V_SHOW_USE)
SETTER(si_opt_2, V_IMAP)
SETTER(si_opt_2, V_PROMPT)
SETTER(si_opt_2, V_NSB)
SETTER(si_opt_2, V_CONTENTSB)
SETTER(si_opt_2, V_CANCELUNIT)
SETTER(si_opt_2, V_MODPSOLVSB)
SETTER(si_opt_2, V_UPTORADICAL)
SETTER(si_opt_2, V_FINDMONOM)
SETTER(si_opt_2, V_COEFSTRAT)
SETTER(si_opt_2, V_IDLIFT)
SETTER(si_opt_2, V_LENGTH)
SETTER(si_opt_2, V_ALLWARN)
SETTER(si_opt_2, V_INTERSECT_ELIM)
SETTER(si_opt_2, V_INTERSECT_SYZ)
SETTER(si_opt_2, V_DEG_STOP)
SETTER(si_opt_1, OPT_PROT)
SETTER(si_opt_1, OPT_REDSB)
SETTER(si_opt_1, OPT_NOT_BUCKETS)
SETTER(si_opt_1, OPT_NOT_SUGAR)
SETTER(si_opt_1, OPT_INTERRUPT)
SETTER(si_opt_1, OPT_SUGARCRIT)
SETTER(si_opt_1, OPT_DEBUG)
SETTER(si_opt_1, OPT_REDTHROUGH)
SETTER(si_opt_1, OPT_NO_SYZ_MINIM)
SETTER(si_opt_1, OPT_RETURN_SB)
SETTER(si_opt_1, OPT_FASTHC)
SETTER(si_opt_1, OPT_OLDSTD)
SETTER(si_opt_1, OPT_STAIRCASEBOUND)
SETTER(si_opt_1, OPT_MULTBOUND)
SETTER(si_opt_1, OPT_DEGBOUND)
SETTER(si_opt_1, OPT_REDTAIL)
SETTER(si_opt_1, OPT_INTSTRATEGY)
SETTER(si_opt_1, OPT_FINDET)
SETTER(si_opt_1, OPT_INFREDTAIL)
SETTER(si_opt_1, OPT_SB_1)
SETTER(si_opt_1, OPT_NOTREGULARITY)
SETTER(si_opt_1, OPT_WEIGHTM)
else
{
std::cerr << "unknown option " << opt << std::endl;
}
return old_value;
});
#undef SETTER
// the "printlevel" system variable in Singular
Singular.method("set_printlevel", [](int level) {
int old_level = printlevel;
printlevel = level;
return old_level;
});
// the "degBound" system variable in Singular
Singular.method("set_degBound", [](int degb) {
int old_degb = Kstd1_deg;
Kstd1_deg = degb;
if (Kstd1_deg != 0)
si_opt_1 |= Sy_bit(OPT_DEGBOUND);
else
si_opt_1 &= ~Sy_bit(OPT_DEGBOUND);
return old_degb;
});
// the "multBound" system variable in Singular
Singular.method("set_multBound", [](int mu) {
int old_mu = Kstd1_mu;
Kstd1_mu = mu;
if (Kstd1_mu != 0)
si_opt_1 |= Sy_bit(OPT_MULTBOUND);
else
si_opt_1 &= ~Sy_bit(OPT_MULTBOUND);
return old_mu;
});
singular_define_coeffs(Singular);
singular_define_rings(Singular);
singular_define_ideals(Singular);
singular_define_matrices(Singular);
singular_define_caller(Singular);
singular_define_coeff_rings(Singular);
// Calls the Singular interpreter with `input`.
// `input` needs to be valid Singular input.
// Returns a 4-tuple:
// 1. entry is a bool, indicated if an error has happened
// 2. entry is the output as a string
// 3. entry is the error output as a string
// 4. entry is the warning output as a string
Singular.method("call_interpreter", [](std::string input) {
// save callbacks
auto default_print = PrintS_callback;
auto default_error = WerrorS_callback;
auto default_warning = WarnS_callback;
// set temporary new callbacks
PrintS_callback = PrintS_for_julia;
WerrorS_callback = WerrorS_for_julia;
WarnS_callback = WarningS_for_julia;
// cleanup return strings
singular_return.clear();
singular_error.clear();
singular_warning.clear();
// call interpreter
std::string input_str = input + "\nreturn();";
bool err = iiAllStart(NULL, const_cast<char *>(input_str.c_str()),
BT_proc, 0);
inerror = 0;
errorreported = 0;
// get output
jl_array_t * result = jl_alloc_array_1d(jl_array_any_type, 4);
jl_arrayset(result, err ? jl_true : jl_false, 0);
jl_arrayset(result, jl_cstr_to_string(singular_return.c_str()), 1);
jl_arrayset(result, jl_cstr_to_string(singular_error.c_str()), 2);
jl_arrayset(result, jl_cstr_to_string(singular_warning.c_str()), 3);
// restore old callbacks
PrintS_callback = default_print;
WerrorS_callback = default_error;
WarnS_callback = default_warning;
return reinterpret_cast<jl_value_t *>(result);
});
/****************************
** from resolutions.jl
***************************/
Singular.method("res_Delete_helper",
[](syStrategy ra, ring o) { syKillComputation(ra, o); });
Singular.method("res_Copy", [](syStrategy ra, ring o) {
const ring origin = currRing;
rChangeCurrRing(o);
syStrategy temp = syCopy(ra);
rChangeCurrRing(origin);
return temp;
});
Singular.method("getindex_internal",
[](syStrategy ra, int64_t k, bool minimal) {
if (minimal) {
return ra->minres[k];
}
return (ideal)ra->fullres[k];
});
Singular.method("syMinimize", [](syStrategy ra, ring o) {
const ring origin = currRing;
rChangeCurrRing(o);
syStrategy result = syCopy(ra);
syMinimize(result);
rChangeCurrRing(origin);
return result;
});
Singular.method("get_minimal_res", [](syStrategy ra) {
return reinterpret_cast<void *>(ra->minres);
});
Singular.method("get_full_res", [](syStrategy ra) {
return reinterpret_cast<void *>(ra->fullres);
});
Singular.method("get_sySize", [](syStrategy ra) {
return static_cast<int64_t>(sySize(ra));
});
Singular.method("create_SyStrategy", [](void * res_void, int64_t len,
ring r) {
resolvente res = reinterpret_cast<resolvente>(res_void);
syStrategy result = (syStrategy)omAlloc0(sizeof(ssyStrategy));
result->list_length = static_cast<short>(len);
result->length = static_cast<int>(len);
resolvente res_cp = (resolvente)omAlloc0((len + 1) * sizeof(ideal));
for (int i = 0; i <= len; i++) {
if (res[i] != NULL) {
res_cp[i] = id_Copy(res[i], r);
}
}
result->fullres = res_cp;
result->syRing = r;
return result;
});
Singular.method("syBetti_internal", [](void * ra, int len, ring o) {
const ring origin = currRing;
rChangeCurrRing(o);
int dummy;
intvec * iv = syBetti(reinterpret_cast<resolvente>(ra), len, &dummy,
NULL, FALSE, NULL);
rChangeCurrRing(origin);
int nrows = iv->rows();
int ncols = iv->cols();
auto betti = (int *)malloc(ncols * nrows * sizeof(int));
for (int i = 0; i < ncols; i++) {
for (int j = 0; j < nrows; j++) {
betti[i * nrows + j] = IMATELEM(*iv, j + 1, i + 1);
}
}
delete (iv);
return std::make_tuple(betti, nrows, ncols);
});
Singular.method("PrintS",&PrintS);
Singular.method("StringAppendS",&StringAppendS);
}