Skip to content

Commit

Permalink
[NB] Fix calculation of SetVertex hash (#9475)
Browse files Browse the repository at this point in the history
  • Loading branch information
phannebohm committed Oct 13, 2022
1 parent 7308049 commit 1d1f0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMCompiler/Compiler/NBackEnd/Util/NBGraphUtil.mo
Expand Up @@ -69,7 +69,7 @@ public
function hash
input SetVertex v;
input Integer mod;
output Integer i = Variable.hash(Pointer.access(v.name), i);
output Integer i = Variable.hash(Pointer.access(v.name), mod);
end hash;

function isEqual
Expand Down

0 comments on commit 1d1f0af

Please sign in to comment.