Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

Commit

Permalink
fix: id_LiftStd
Browse files Browse the repository at this point in the history
  • Loading branch information
hannes14 authored and thofma committed Dec 1, 2020
1 parent 26da076 commit 36d4225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ideals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ void singular_define_ideals(jlcxx::Module & Singular)
Singular.method("id_LiftStd", [](ideal m, ring o) {
const ring origin = currRing;
rChangeCurrRing(o);
matrix ma=mpInit(1,1);
matrix ma=mpNew(1,1);
ideal syz=idInit(1,1);
ideal res = idLift(m, &ma, testHomog, &syz);
ideal res = idLiftStd(m, &ma, testHomog, &syz);
rChangeCurrRing(origin);
return std::make_tuple(res, ma, syz);
});
Expand Down

0 comments on commit 36d4225

Please sign in to comment.