You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now when cakeml is given the program of the form
fun const_optimization x =
case x of
A a => 10
| B a b => 10
| C a b c => 10;
fun const_optimization2 x =
case x of
A a => x
| B a b => x
| C a b c => x;
it results in code like this where the branches are still there
Right now when cakeml is given the program of the form
it results in code like this where the branches are still there
@myreen thinks that this optimization should be done in datalang
The text was updated successfully, but these errors were encountered: