Skip to content

Commit

Permalink
new coeff types (#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes14 authored Jan 22, 2024
1 parent 5919a47 commit 99dc516
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions deps/src/singular.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ JLCXX_MODULE define_julia_module(jlcxx::Module & Singular)
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_Nemo_AnticNumberField", n_Nemo_AnticNumberField);
Singular.set_const("n_Nemo_QQField", n_Nemo_QQField);
Singular.set_const("n_Nemo_ZZRing", n_Nemo_ZZRing);
Singular.set_const("n_Nemo_FqPolyRepField", n_Nemo_FqPolyRepField);
Singular.set_const("n_Nemo_fqPolyRepField", n_Nemo_fqPolyRepField);
Singular.set_const("n_Nemo_Field", n_Nemo_Field);
Singular.set_const("n_Nemo_Ring", n_Nemo_Ring);
Singular.set_const("n_Nemo_AnticNumberField", (n_coeffType)17 /*n_Nemo_AnticNumberField*/);
Singular.set_const("n_Nemo_QQField", (n_coeffType)18 /*n_Nemo_QQField*/);
Singular.set_const("n_Nemo_ZZRing", (n_coeffType)19 /*n_Nemo_ZZRing*/);
Singular.set_const("n_Nemo_FqPolyRepField", (n_coeffType)20 /*n_Nemo_FqPolyRepField*/);
Singular.set_const("n_Nemo_fqPolyRepField", (n_coeffType)21 /*n_Nemo_fqPolyRepField*/);
Singular.set_const("n_Nemo_Field", (n_coeffType)22 /*n_Nemo_Field*/);
Singular.set_const("n_Nemo_Ring", (n_coeffType)23 /*n_Nemo_Ring*/);
Singular.set_const("n_unknown", n_unknown);
Singular.add_type<snumber>("number");
Singular.add_type<__mpz_struct>("__mpz_struct");
Expand Down

0 comments on commit 99dc516

Please sign in to comment.