Skip to content

Commit fb7ffc2

Browse files
authored
Merge pull request #154 from rmatthes/restorecompilationafterunimathPR1844
should restore compilation after merging UniMath PR #1844
2 parents f7b0b31 + fd42743 commit fb7ffc2

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.github/workflows/blank.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ jobs:
2828
steps:
2929
# Checkout UniMath in the current directory.
3030
- name: Checkout UniMath
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
repository: UniMath/UniMath
3434
path: .
3535
clean: false
3636

3737
# Checkout TypeTheory in TypeTheory/
3838
- name: Checkout largecatmodules
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
with:
4141
path: largecatmodules
4242

4343
# Grab the cache if available. We tell dune to use $(pwd)/dune-cache/ in
4444
# the custom_script below.
45-
- uses: actions/cache@v3
45+
- uses: actions/cache@v4
4646
with:
4747
path: dune-cache
4848
key: largecatmodules-coq-${{ matrix.coq-version }}-${{ github.run_id }}-${{ github.run_number }}

Modules/Signatures/HssInitialModel.v

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Require Import UniMath.CategoryTheory.Chains.Chains.
3131
Require Import UniMath.CategoryTheory.Chains.Adamek.
3232
Require Import UniMath.CategoryTheory.Chains.OmegaCocontFunctors.
3333
Require Import UniMath.CategoryTheory.FunctorAlgebras.
34+
Require UniMath.SubstitutionSystems.SubstitutionSystems.
3435
Require Import UniMath.SubstitutionSystems.LiftingInitial_alt.
3536
Require Import UniMath.SubstitutionSystems.ModulesFromSignatures.
3637
Require Import UniMath.SubstitutionSystems.SignatureCategory.
@@ -85,7 +86,7 @@ Section EpiSignatureSig.
8586
:= hss_initial_arrow_mon hsig b,, hss_initial_arrow_law hsig b.
8687

8788
Local Notation EndAlg sig :=
88-
(FunctorAlg (Id_H HSET BinCoproductsHSET ( sig))).
89+
(FunctorAlg (SubstitutionSystems.Id_H HSET BinCoproductsHSET ( sig))).
8990

9091
Local Notation M_alg := (ModulesFromSignatures.M_alg HSET BinCoproductsHSET).
9192

@@ -94,7 +95,7 @@ Section EpiSignatureSig.
9495
(hsig : is_omega_cocont sig)
9596
(b : model (sigWithStrength_to_sig sig))
9697
(t : (rep_disp SET) [{(sigWithStrength_to_sig sig)}] ⟦ hss_initial_model hsig, b ⟧) :
97-
is_algebra_mor (Id_H HSET BinCoproductsHSET ( sig))
98+
is_algebra_mor (SubstitutionSystems.Id_H HSET BinCoproductsHSET ( sig))
9899
(pr1 (pr1 (iniHSS sig hsig)))
99100
(M_alg sig b (model_τ b))
100101
(pr1 (pr1 t)).
@@ -150,7 +151,7 @@ Section EpiSignatureSig.
150151
(Colimits.ColimsFunctorCategory_of_shape nat_graph
151152
HSET HSET (ColimsHSET_of_shape nat_graph)
152153
(initChain (Initial_functor_precat HSET HSET InitialHSET)
153-
(Id_H HSET BinCoproductsHSET ( sig)))))
154+
(SubstitutionSystems.Id_H HSET BinCoproductsHSET ( sig)))))
154155
(ModulesFromSignatures.M_alg HSET BinCoproductsHSET ( sig) b (model_τ b)))).
155156

156157
specialize (h (rep_mor_to_alg_mor hsig b t)).

dune-project

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
(lang dune 3.5)
2-
(using coq 0.6)
1+
(lang dune 3.8)
2+
(using coq 0.8)
33

0 commit comments

Comments
 (0)