Skip to content

Commit

Permalink
Merge pull request #17 from coq-community/function_scope
Browse files Browse the repository at this point in the history
Update CI and fix notation scopes
  • Loading branch information
pi8027 authored Dec 8, 2023
2 parents 979da1e + e401b82 commit 07cbbe8
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/docker-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ jobs:
matrix:
image:
- 'mathcomp/mathcomp-dev:coq-dev'
- 'mathcomp/mathcomp-dev:coq-8.18'
- 'mathcomp/mathcomp-dev:coq-8.17'
- 'mathcomp/mathcomp-dev:coq-8.16'
- 'mathcomp/mathcomp:2.1.0-coq-8.18'
- 'mathcomp/mathcomp:2.1.0-coq-8.17'
- 'mathcomp/mathcomp:2.1.0-coq-8.16'
- 'mathcomp/mathcomp:2.0.0-coq-8.18'
- 'mathcomp/mathcomp:2.0.0-coq-8.17'
- 'mathcomp/mathcomp:2.0.0-coq-8.16'
fail-fast: false
Expand Down
10 changes: 10 additions & 0 deletions meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,20 @@ dependencies:
tested_coq_opam_versions:
- version: 'coq-dev'
repo: 'mathcomp/mathcomp-dev'
- version: 'coq-8.18'
repo: 'mathcomp/mathcomp-dev'
- version: 'coq-8.17'
repo: 'mathcomp/mathcomp-dev'
- version: 'coq-8.16'
repo: 'mathcomp/mathcomp-dev'
- version: '2.1.0-coq-8.18'
repo: 'mathcomp/mathcomp'
- version: '2.1.0-coq-8.17'
repo: 'mathcomp/mathcomp'
- version: '2.1.0-coq-8.16'
repo: 'mathcomp/mathcomp'
- version: '2.0.0-coq-8.18'
repo: 'mathcomp/mathcomp'
- version: '2.0.0-coq-8.17'
repo: 'mathcomp/mathcomp'
- version: '2.0.0-coq-8.16'
Expand Down
2 changes: 1 addition & 1 deletion theories/sets/sset1.v
Original file line number Diff line number Diff line change
Expand Up @@ -2065,7 +2065,7 @@ Definition allf (g: Set) (p: property) :=
forall x, inc x (domain g) -> (p (Vg g x)).

Notation "f1 =1g f2" := (same_Vg f1 f2)
(at level 70, no associativity) : fun_scope.
(at level 70, no associativity) : type_scope.

(** The function [V] is well-defined for functional graphs.
Here are some properties *)
Expand Down
2 changes: 1 addition & 1 deletion theories/sets/sset2.v
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ Definition cstgp (f E: Set) := singl_val_fp (inc ^~E) (Vg f).


Notation "f1 =1f f2" := (same_Vf f1 f2)
(at level 70, no associativity) : fun_scope.
(at level 70, no associativity) : type_scope.

Lemma function_exten3 f g:
function f -> function g ->
Expand Down

0 comments on commit 07cbbe8

Please sign in to comment.