mirror of
https://github.com/Smaug123/agdaproofs
synced 2025-10-18 17:48:40 +00:00
13 lines
353 B
Agda
13 lines
353 B
Agda
{-# OPTIONS --safe --warning=error --without-K #-}
|
||
|
||
open import Functions
|
||
open import LogicalFormulae
|
||
open import Numbers.Naturals.Definition
|
||
open import Sets.FinSet.Definition
|
||
|
||
module Sets.Cardinality.Infinite.Definition where
|
||
|
||
InfiniteSet : {a : _} (A : Set a) → Set a
|
||
InfiniteSet A = (n : ℕ) → (f : FinSet n → A) → (Bijection f) → False
|
||
|