Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Tomb committed Jan 5, 2021
1 parent 7fcfdad commit 90a2842
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/java/arrays.saw
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ let main : TopLevel () = do {
sum_ms <- java_verify c "sum" [] sum_setup;
comp_ms <- java_verify c "comp" [unit_ms] comp_setup;
print "Extracting model of sum, which has type:";
sum_tm <- jvm_extract c "sum" sum_setup';
id_tm <- jvm_extract c "arr_id" id_setup;
sum_tm <- java_extract c "sum" sum_setup';
id_tm <- java_extract c "arr_id" id_setup;
check_term sum_tm;
print "Running sum on ten 1 inputs:";
print {{ sum_tm [1, 1, 1, 1, 1, 1, 1, 1, 1, 1] }};
Expand Down

0 comments on commit 90a2842

Please sign in to comment.