diff options
author | Greg Brown <greg.brown01@ed.ac.uk> | 2022-12-06 13:50:12 +0000 |
---|---|---|
committer | Greg Brown <greg.brown01@ed.ac.uk> | 2022-12-06 13:50:12 +0000 |
commit | 121965c3e550f285d3a428cbb6da10c97bfa9846 (patch) | |
tree | fccec8224b7aae2fcf421e01b4440899ae45d22d /src/Soat/FirstOrder/Algebra | |
parent | df7df335a91878448a9f231c0af36f57874ccd4e (diff) |
refactor: rename pwSetoid -> Product.
Diffstat (limited to 'src/Soat/FirstOrder/Algebra')
-rw-r--r-- | src/Soat/FirstOrder/Algebra/Coproduct.idr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Soat/FirstOrder/Algebra/Coproduct.idr b/src/Soat/FirstOrder/Algebra/Coproduct.idr index 88db184..548beed 100644 --- a/src/Soat/FirstOrder/Algebra/Coproduct.idr +++ b/src/Soat/FirstOrder/Algebra/Coproduct.idr @@ -175,7 +175,7 @@ termToCoproduct x y = MkHomomorphism { func = MkIndexedSetoidHomomorphism (\_ => id) (\t, _, _ => tmRelImpliesCoprodRel) , semHomo = \op, tms => Call op $ - reflect (index (pwSetoid (CoproductAlgebra x y).setoid) _) $ + reflect (index (Product (CoproductAlgebra x y).setoid) _) $ sym $ mapId tms } |