Skip to content

Commit

Permalink
Merge pull request #47 from SkySkimmer/no-hresolve
Browse files Browse the repository at this point in the history
Adapt to coq/coq#17035 (remove hresolve)
  • Loading branch information
minkiminki authored Dec 29, 2022
2 parents 4f140d2 + d31a48b commit ec2dd14
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 113 deletions.
3 changes: 2 additions & 1 deletion metasrc/pacotac_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

relsize = int(sys.argv[1])

print ('From Paco Require Import hpattern.')
print ('From Paco Require Export paconotation_internal paconotation.')
print ('Set Implicit Arguments.')
print ()
Expand All @@ -24,6 +23,8 @@
print ()
print ('(** ** Internal tactics *)')
print ()
print ('Ltac get_concl := lazymatch goal with [ |- ?G ] => G end.')
print ()
print ('Inductive _paco_mark := _paco_mark_cons.')
print ()
print ('Inductive _paco_foo := _paco_foo_cons.')
Expand Down
111 changes: 0 additions & 111 deletions src/hpattern.v

This file was deleted.

3 changes: 2 additions & 1 deletion src/pacotac_internal.v
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
From Paco Require Import hpattern.
From Paco Require Export paconotation_internal paconotation.
Set Implicit Arguments.

Expand All @@ -14,6 +13,8 @@ Set Implicit Arguments.

(** ** Internal tactics *)

Ltac get_concl := lazymatch goal with [ |- ?G ] => G end.

Inductive _paco_mark := _paco_mark_cons.

Inductive _paco_foo := _paco_foo_cons.
Expand Down

0 comments on commit ec2dd14

Please sign in to comment.