Skip to content

Commit

Permalink
Small fix: Removed the "type" sort from the abstract state type, as i…
Browse files Browse the repository at this point in the history
…t's redundant and also breaks dataspace extension
  • Loading branch information
simondfoster committed Jun 29, 2023
1 parent 14409a1 commit 3305f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lens_Lib.ML
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ fun lensT a b = Type (@{type_name lens_ext}, [a, b, unitT])
fun isLensT (Type (n, _)) = (n = @{type_name lens_ext}) |
isLensT _ = false

val astateT = (TFree ("'st", [@{class type}, @{class scene_space}]))
val astateT = (TFree ("'st", [@{class scene_space}]))

fun pairWith _ [] = []
| pairWith x (y :: ys) = [(x, y), (y, x)] @ pairWith x ys;
Expand Down

0 comments on commit 3305f36

Please sign in to comment.