lean4-htt/library/init/data/int
Leonardo de Moura 01003b79cc fix(library/init/meta/interactive): simp [...] at *
closes #1675

After this commit, the following example works as expected.
```
example (p : nat → Prop) (a b : nat) : a = 0 ∧ b = 0 → p (a + b) → p 0 :=
begin
  intros h₁ h₂,
  simp [h₁] at *,
  /- produces the state
     (p : nat → Prop) (a b : nat)
     h₁ : true
     h₂ : p 0
     |- p 0
  -/
  assumption
end
```
as expected.
Remark: the original issue raised by issue #1675 is actually solved by the
`simp_all` tactic.
2017-07-01 20:50:46 -07:00
..
basic.lean feat(init/data/int): int lemmas, more bitwise theorems 2017-06-27 18:55:52 -07:00
bitwise.lean fix(library/init/meta/interactive): simp [...] at * 2017-07-01 20:50:46 -07:00
comp_lemmas.lean feat(library): add mk_int_val_ne_proof 2016-12-24 15:22:31 -08:00
default.lean feat(init/data/int): int lemmas, more bitwise theorems 2017-06-27 18:55:52 -07:00
lemmas.lean feat(init/data/int): int lemmas, more bitwise theorems 2017-06-27 18:55:52 -07:00
order.lean feat(init/data/int): int lemmas, more bitwise theorems 2017-06-27 18:55:52 -07:00