Skip to content

Commit

Permalink
Workaround to make the recog package load again.
Browse files Browse the repository at this point in the history
The recog package assigns to SMTX.InvariantBilinearForm in c6.gi;
however, for HPCGAP, this record is made read-only. We change it
to an atomic record so that we don't get a write guard error.
  • Loading branch information
rbehrends committed Mar 30, 2020
1 parent 12ea5fd commit 0bc8e5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/meatauto.gi
Original file line number Diff line number Diff line change
Expand Up @@ -1690,5 +1690,5 @@ SMTX.SetEndAlgResidue:=SMTX.Setter("endAlgResidue");
SMTX.EndAlgResidue:=SMTX.Getter("endAlgResidue");

if IsHPCGAP then
MakeReadOnlyObj(SMTX);
SMTX := AtomicRecord(SMTX);
fi;

0 comments on commit 0bc8e5e

Please sign in to comment.