Skip to content

Commit

Permalink
fixes problem with indepSet: Trac #387
Browse files Browse the repository at this point in the history
  • Loading branch information
ederc committed Dec 8, 2011
1 parent 1f03aba commit 9b58b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/hdegree.cc
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ intvec * scIndIntvec(ideal S, ideal Q)
hwork = (scfmon)omAlloc(hNexist * sizeof(scmon));
hvar = (varset)omAlloc(((currRing->N) + 1) * sizeof(int));
hpure = (scmon)omAlloc((1 + ((currRing->N) * (currRing->N))) * sizeof(int));
hInd = (scmon)omAlloc((1 + (currRing->N)) * sizeof(int));
hInd = (scmon)omAlloc0((1 + (currRing->N)) * sizeof(int));
mc = hisModule;
if (mc==0)
{
Expand Down

0 comments on commit 9b58b4b

Please sign in to comment.