-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathDefinitions.agda
More file actions
44 lines (34 loc) · 1.36 KB
/
Definitions.agda
File metadata and controls
44 lines (34 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
------------------------------------------------------------------------
-- The Agda standard library
--
-- Issue #2875: this is a stub module, retained solely for compatibility
------------------------------------------------------------------------
{-# OPTIONS --cubical-compatible --safe #-}
module Relation.Binary.Morphism.Definitions
{a} (A : Set a) -- The domain of the morphism
{b} (B : Set b) -- The codomain of the morphism
where
------------------------------------------------------------------------
-- Morphism definition in Function.Core
import Function.Core
using (Morphism)
------------------------------------------------------------------------
-- Basic definitions
import Function.Definitions
using (Congruent)
------------------------------------------------------------------------
-- DEPRECATED NAMES
------------------------------------------------------------------------
-- Please use the new names as continuing support for the old names is
-- not guaranteed.
-- Version 2.4
Morphism = Function.Core.Morphism
{-# WARNING_ON_USAGE Morphism
"Warning: Morphism was deprecated in v2.4.
Please use the standard function notation (e.g. A → B) instead."
#-}
Homomorphic₂ = Function.Definitions.Congruent
{-# WARNING_ON_USAGE Homomorphic₂
"Warning: Homomorphic₂ was deprecated in v2.4.
Please use Function.Definitions.Congruent instead."
#-}