File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ Bug-fixes
21
21
Non-backwards compatible changes
22
22
--------------------------------
23
23
24
+ * The ` n ` argument to ` _⊜_ ` in ` Tactic.RingSolver.NonReflective ` has been made implict rather than explicit.
25
+
24
26
* ` Data.Empty.Polymorphic ` and ` Data.Unit.Polymorphic ` were rewritten
25
27
to explicitly use ` Lift ` rather that defining new types. This means
26
28
that these are now compatible with ` ⊥ ` and ` ⊤ ` from the rest of the
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ private
154
154
callSolver : Vec String numVars → Term → Term → Args Type
155
155
callSolver nms lhs rhs =
156
156
2 ⋯⟅∷⟆ ring ⟨∷⟩ toTerm numVars ⟨∷⟩
157
- vlams nms (quote _⊜_ $ʳ (toTerm numVars ⟨∷⟩ E lhs ⟨∷⟩ E rhs ⟨∷⟩ [])) ⟨∷⟩
157
+ vlams nms (quote _⊜_ $ʳ (toTerm numVars ⟅∷⟆ E lhs ⟨∷⟩ E rhs ⟨∷⟩ [])) ⟨∷⟩
158
158
hlams nms (quote refl $ʳ (1 ⋯⟅∷⟆ [])) ⟨∷⟩
159
159
[]
160
160
where
Original file line number Diff line number Diff line change @@ -93,9 +93,9 @@ solve : ∀ (n : ℕ) →
93
93
solve = Ops.solve
94
94
{-# INLINE solve #-}
95
95
96
- _⊜_ : ∀ ( n : ℕ) →
96
+ _⊜_ : ∀ { n : ℕ} →
97
97
Expr Carrier n →
98
98
Expr Carrier n →
99
99
Expr Carrier n × Expr Carrier n
100
- _⊜_ _ = _,_
100
+ _⊜_ = _,_
101
101
{-# INLINE _⊜_ #-}
You can’t perform that action at this time.
0 commit comments