summaryrefslogtreecommitdiff
path: root/src/Soat/SecondOrder
diff options
context:
space:
mode:
authorGreg Brown <greg.brown01@ed.ac.uk>2022-11-25 15:24:17 +0000
committerGreg Brown <greg.brown01@ed.ac.uk>2022-11-25 15:24:17 +0000
commit02f72834f36dbb3ff362f3876ebf87a2cebec0a8 (patch)
tree3ee8bd27d3eecfd497a9a8429ef5d64d1a4f90d0 /src/Soat/SecondOrder
parent1f867019430517435433ec55ad42dbf6770fd4fd (diff)
refactor: rename Homomorphism.f -> func.
Diffstat (limited to 'src/Soat/SecondOrder')
-rw-r--r--src/Soat/SecondOrder/Algebra.idr4
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