mirror of
https://github.com/achlipala/frap.git
synced 2024-11-27 23:06:20 +00:00
Revising for next lecture
This commit is contained in:
parent
d745f0802e
commit
6c1d09bbbc
1 changed files with 2 additions and 2 deletions
|
@ -206,7 +206,7 @@ Module ArithWithVariables.
|
|||
* We use an infix operator [==v] for equality tests on strings.
|
||||
* It has a somewhat funny and very expressive type,
|
||||
* whose details we will try to gloss over.
|
||||
* (To dig into it more on your own, the appropriate keyword is "dependent types.") *)
|
||||
* (We later return to them in SubsetTypes.v.) *)
|
||||
Fixpoint substitute (inThis : arith) (replaceThis : var) (withThis : arith) : arith :=
|
||||
match inThis with
|
||||
| Const _ => inThis
|
||||
|
@ -469,7 +469,7 @@ Module ArithWithVariables.
|
|||
linear_arithmetic.
|
||||
Qed.
|
||||
|
||||
Hint Rewrite n_times_0.
|
||||
Local Hint Rewrite n_times_0.
|
||||
(* Registering rewrite hints will get [simplify] to apply them for us
|
||||
* automatically! *)
|
||||
|
||||
|
|
Loading…
Reference in a new issue