diff options
author | Greg Brown <greg.brown01@ed.ac.uk> | 2022-11-25 15:24:17 +0000 |
---|---|---|
committer | Greg Brown <greg.brown01@ed.ac.uk> | 2022-11-25 15:24:17 +0000 |
commit | 02f72834f36dbb3ff362f3876ebf87a2cebec0a8 (patch) | |
tree | 3ee8bd27d3eecfd497a9a8429ef5d64d1a4f90d0 /src/Soat/SecondOrder/Algebra.idr | |
parent | 1f867019430517435433ec55ad42dbf6770fd4fd (diff) |
refactor: rename Homomorphism.f -> func.
Diffstat (limited to 'src/Soat/SecondOrder/Algebra.idr')
-rw-r--r-- | src/Soat/SecondOrder/Algebra.idr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Soat/SecondOrder/Algebra.idr b/src/Soat/SecondOrder/Algebra.idr index 57b8a51..5457385 100644 --- a/src/Soat/SecondOrder/Algebra.idr +++ b/src/Soat/SecondOrder/Algebra.idr @@ -138,5 +138,5 @@ public export record Homomorphism {0 sig : Signature} (a, b : Algebra sig) where constructor MkHomomorphism - f : (t : sig.T) -> (ctx : List sig.T) -> a.raw.U t ctx -> b.raw.U t ctx - homo : IsHomomorphism a b f + func : (t : sig.T) -> (ctx : List sig.T) -> a.raw.U t ctx -> b.raw.U t ctx + homo : IsHomomorphism a b func |