Skip to content

Commit

Permalink
Fix translations due to new tString constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
mattam82 committed Jul 8, 2024
1 parent ec45ca3 commit 8338f05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion translations/param_binary.v
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Fixpoint tsl_rec1_app (app : list term) (E : tsl_table) (t : term) : term :=
| tFix _ _ | tCoFix _ _ => todo "tsl"
| tVar _ | tEvar _ _ => todo "tsl"
| tLambda _ _ _ => tVar "impossible"
| tInt _ | tFloat _ | tArray _ _ _ _ => todo "tsl"
| tInt _ | tFloat _ | tArray _ _ _ _ | tString _ => todo "tsl"
end
in apply app t1
end.
Expand Down
2 changes: 1 addition & 1 deletion translations/param_original.v
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Fixpoint tsl_rec1_app (app : option term) (E : tsl_table) (t : term) : term :=
| tFix _ _ | tCoFix _ _ => todo "tsl"
| tVar _ | tEvar _ _ => todo "tsl"
| tLambda _ _ _ => tVar "impossible"
| tInt _ | tFloat _ | tArray _ _ _ _ => todo "tsl"
| tInt _ | tFloat _ | tArray _ _ _ _ | tString _ => todo "tsl"
end in
match app with Some t' => mkApp t1 (t' {3 := tRel 1} {2 := tRel 0})
| None => t1 end
Expand Down

0 comments on commit 8338f05

Please sign in to comment.