Skip to content

Commit

Permalink
Merge pull request #154 from rmatthes/restorecompilationafterunimathP…
Browse files Browse the repository at this point in the history
…R1844

should restore compilation after merging UniMath PR #1844
  • Loading branch information
rmatthes authored Mar 1, 2024
2 parents f7b0b31 + fd42743 commit fb7ffc2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ jobs:
steps:
# Checkout UniMath in the current directory.
- name: Checkout UniMath
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: UniMath/UniMath
path: .
clean: false

# Checkout TypeTheory in TypeTheory/
- name: Checkout largecatmodules
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: largecatmodules

# Grab the cache if available. We tell dune to use $(pwd)/dune-cache/ in
# the custom_script below.
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: dune-cache
key: largecatmodules-coq-${{ matrix.coq-version }}-${{ github.run_id }}-${{ github.run_number }}
Expand Down
7 changes: 4 additions & 3 deletions Modules/Signatures/HssInitialModel.v
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Require Import UniMath.CategoryTheory.Chains.Chains.
Require Import UniMath.CategoryTheory.Chains.Adamek.
Require Import UniMath.CategoryTheory.Chains.OmegaCocontFunctors.
Require Import UniMath.CategoryTheory.FunctorAlgebras.
Require UniMath.SubstitutionSystems.SubstitutionSystems.
Require Import UniMath.SubstitutionSystems.LiftingInitial_alt.
Require Import UniMath.SubstitutionSystems.ModulesFromSignatures.
Require Import UniMath.SubstitutionSystems.SignatureCategory.
Expand Down Expand Up @@ -85,7 +86,7 @@ Section EpiSignatureSig.
:= hss_initial_arrow_mon hsig b,, hss_initial_arrow_law hsig b.

Local Notation EndAlg sig :=
(FunctorAlg (Id_H HSET BinCoproductsHSET ( sig))).
(FunctorAlg (SubstitutionSystems.Id_H HSET BinCoproductsHSET ( sig))).

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

Expand All @@ -94,7 +95,7 @@ Section EpiSignatureSig.
(hsig : is_omega_cocont sig)
(b : model (sigWithStrength_to_sig sig))
(t : (rep_disp SET) [{(sigWithStrength_to_sig sig)}] ⟦ hss_initial_model hsig, b ⟧) :
is_algebra_mor (Id_H HSET BinCoproductsHSET ( sig))
is_algebra_mor (SubstitutionSystems.Id_H HSET BinCoproductsHSET ( sig))
(pr1 (pr1 (iniHSS sig hsig)))
(M_alg sig b (model_τ b))
(pr1 (pr1 t)).
Expand Down Expand Up @@ -150,7 +151,7 @@ Section EpiSignatureSig.
(Colimits.ColimsFunctorCategory_of_shape nat_graph
HSET HSET (ColimsHSET_of_shape nat_graph)
(initChain (Initial_functor_precat HSET HSET InitialHSET)
(Id_H HSET BinCoproductsHSET ( sig)))))
(SubstitutionSystems.Id_H HSET BinCoproductsHSET ( sig)))))
(ModulesFromSignatures.M_alg HSET BinCoproductsHSET ( sig) b (model_τ b)))).

specialize (h (rep_mor_to_alg_mor hsig b t)).
Expand Down
4 changes: 2 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(lang dune 3.5)
(using coq 0.6)
(lang dune 3.8)
(using coq 0.8)

0 comments on commit fb7ffc2

Please sign in to comment.