Skip to content

Commit

Permalink
Fixed corner case
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Sep 29, 2024
1 parent a3e5501 commit c5c7c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/org/rascalmpl/benchmark/Visiting/visiting.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public ColoredTree genTree(int leafChance, int minDepth,int maxDepth){
switch(arbInt(3)){
case 0: return red(left,right);
case 1: return black(left,right);
case 2: return green(left,right);
default: return green(left,right);
}
}

Expand Down

0 comments on commit c5c7c33

Please sign in to comment.