Skip to content

Commit

Permalink
fix #95
Browse files Browse the repository at this point in the history
  • Loading branch information
dm0n3y committed Jan 7, 2025
1 parent 0c81308 commit df3b010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/structure/Oblig.re
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module Delta = {

let zero = empty;
let decr = (o, map) =>
add(o, Tuples.map_fst(n => n - 1, find(o, map)), map);
add(o, Tuples.map_fst(n => n + 1, find(o, map)), map);
let incr = (o, map) =>
add(o, Tuples.map_snd(n => n + 1, find(o, map)), map);

Expand Down

0 comments on commit df3b010

Please sign in to comment.