Skip to content

Commit

Permalink
fixixing so that installation works.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmalecha committed Apr 19, 2019
1 parent 3dbe87d commit 25143e0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*.vi
*.glob
*.v.d
*.ml4.d
*.d
*.aux
Makefile.coq
Makefile.coq.conf
Expand Down
7 changes: 4 additions & 3 deletions _CoqProject
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
-R theories LtacIter
-I src
-Q theories LtacIter

src/ltac_iter_plugin.ml4
src/g_ltac_iter.ml4
src/ltac_iter.mlpack
theories/LtacIter.v

test-suite/example.v
# test-suite/example.v
2 changes: 1 addition & 1 deletion src/ltac_iter_plugin.ml4 → src/g_ltac_iter.ml4
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ open Tacinterp
open Tacarg


DECLARE PLUGIN "ltac_iter_plugin"
DECLARE PLUGIN "ltac_iter"


module WITH_DB =
Expand Down
1 change: 1 addition & 0 deletions src/ltac_iter.mlpack
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
G_ltac_iter
2 changes: 1 addition & 1 deletion test-suite/example.v
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Axiom pfFalse : True.
Hint Resolve pfTrue pfFalse : test_db.

Goal True.
let k l := pose l in
let k l := (idtac l) in
foreach [ rev db:test_db ] k.
exact I.
Defined.
Expand Down
2 changes: 1 addition & 1 deletion theories/LtacIter.v
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Declare ML Module "ltac_iter_plugin".
Declare ML Module "ltac_iter".

0 comments on commit 25143e0

Please sign in to comment.