Search is not available for this dataset
text string | meta dict |
|---|---|
-- Andreas, 2019-03-27
-- Do not run checkIApplyConfluence unless --cubical
-- The following verbosity options triggers a crash
-- in case checkIApplyConfluence_ runs.
-- {-# OPTIONS --cubical #-} -- Trigges the crash.
{-# OPTIONS -v tc.cover.iapply.confluence.crash:666 #-} -- Activate crashing program point.
ope... | {
"alphanum_fraction": 0.6940133038,
"avg_line_length": 22.55,
"ext": "agda",
"hexsha": "e8a8a078947c70ec4f71e9ae11906fbcbeb2ff3b",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-09-15T14:36:15.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-09-15T14:36:15... |
{-# OPTIONS --without-K --safe #-}
module Util.Data.Product where
open import Data.Product public hiding (map₂)
map₂ : ∀ {α β γ} {A : Set α} {B : A → Set β} {C : A → Set γ}
→ (∀ a → B a → C a)
→ Σ A B → Σ A C
map₂ f (a , b) = a , f a b
| {
"alphanum_fraction": 0.5267489712,
"avg_line_length": 22.0909090909,
"ext": "agda",
"hexsha": "e4e4ad45b38900a72606824b6099a8ada7f5f569",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --cubical --safe #-}
module Cubical.Data.Strict2Group.Explicit.Base where
open import Cubical.Foundations.Prelude
open import Cubical.Data.Group.Base
open import Cubical.Data.Strict2Group.Explicit.Notation
record Strict2GroupExp ℓ : Type (ℓ-suc ℓ) where
constructor strict2groupexp
field
-- a gro... | {
"alphanum_fraction": 0.5478073329,
"avg_line_length": 31.6136363636,
"ext": "agda",
"hexsha": "b4a89a64e4c7d2a9a2d789c3ada0a9f376b1e933",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
------------------------------------------------------------------------
-- An example showing that transitivity-like proofs that are not
-- size-preserving can sometimes be used in a compositional way
------------------------------------------------------------------------
-- One can use the technique from "Beating t... | {
"alphanum_fraction": 0.5845274805,
"avg_line_length": 34.3489096573,
"ext": "agda",
"hexsha": "cd1b21c0dd61332b3efe5ee686ae116fca62b6e9",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --without-K --exact-split #-}
module 10-truncation-levels where
import 09-fundamental-theorem
open 09-fundamental-theorem public
-- Section 8.1 Propositions
is-prop :
{i : Level} (A : UU i) → UU i
is-prop A = (x y : A) → is-contr (Id x y)
{- We introduce the universe of all propositions. -}
UU-Prop :... | {
"alphanum_fraction": 0.5455098837,
"avg_line_length": 32.5474452555,
"ext": "agda",
"hexsha": "7a03e6f97aefa184d3cdffccdf817a4275c373e3",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
module RevMachine where
open import Level
open import Relation.Nullary
open import Relation.Binary
open import Relation.Binary.PropositionalEquality
open import Data.Product
record RevMachine {ℓ} : Set (suc ℓ) where
field
State : Set ℓ
_↦_ : Rel State ℓ
deterministic : ∀ {st st₁ st₂} → st ↦ st₁ → st ↦ st... | {
"alphanum_fraction": 0.6129032258,
"avg_line_length": 29.8518518519,
"ext": "agda",
"hexsha": "b173e702095b009f19c1b3ab939bd513657368a8",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-11-04T06:54:45.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-11-04T... |
module Structure.Numeral.Natural where
open import Lang.Instance
import Lvl
open import Logic.Predicate
open import Logic.Propositional
open import Structure.Setoid
open import Structure.Function.Domain
open import Structure.Function
open import Structure.Operator
open import Structure.Relator
open import Structu... | {
"alphanum_fraction": 0.5506198347,
"avg_line_length": 35.2,
"ext": "agda",
"hexsha": "bfb60caf3665cf19aa2a0c9d425bb7dc50b63ba1",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "7... |
{- Byzantine Fault Tolerant Consensus Verification in Agda, version 0.9.
Copyright (c) 2021, Oracle and/or its affiliates.
Licensed under the Universal Permissive License v 1.0 as shown at https://opensource.oracle.com/licenses/upl
-}
-----------------------------------------------------------------------------... | {
"alphanum_fraction": 0.5560022975,
"avg_line_length": 42.4634146341,
"ext": "agda",
"hexsha": "e1d73006e070988d80797349abe642633636b8d7",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
module UniDB.Subst.Reg where
open import UniDB.Spec
open import UniDB.Subst.Core
open import UniDB.Morph.Reg
open import UniDB.Morph.WeakenPrime
module _ {T : STX} {{vrT : Vr T}} {{wkT : Wk T}} {{apTT : Ap T T}} where
instance
iCompReg : Comp (Reg T)
_⊙_ {{iCompReg}} (baseR ξ) ζ = ξ ⊡ ζ
_⊙... | {
"alphanum_fraction": 0.5060111636,
"avg_line_length": 42.3454545455,
"ext": "agda",
"hexsha": "973864fbff95ea472b70207233501d698d205201",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --safe --without-K #-}
module JVM.Builtins where
open import Data.List
open import JVM.Types
Object = "java/lang/Object"
Str = "java/lang/String"
jre : Constantpool
jre = staticref ("java/lang/System" / "out" ∶ ref "java/io/PrintStream")
∷ virtual ("java/io/PrintStream" / "println" :⟨ [ ... | {
"alphanum_fraction": 0.5947242206,
"avg_line_length": 24.5294117647,
"ext": "agda",
"hexsha": "557068bd7f4e2d22d41193489f0c11675efabb4d",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-12-28T17:37:15.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-12-28T... |
------------------------------------------------------------------------
-- Paolo Capriotti's variant of higher lenses
------------------------------------------------------------------------
{-# OPTIONS --cubical --safe #-}
import Equality.Path as P
module Lens.Non-dependent.Higher.Capriotti
{e⁺} (eq : ∀ {a p} → ... | {
"alphanum_fraction": 0.3429414766,
"avg_line_length": 46.5118644068,
"ext": "agda",
"hexsha": "6ef19029658652f76f385c70b7b7f6593b04c607",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
module parse-test where
import parse
open import lib
open import cedille-types
import cedille
module parsem = parse cedille.gratr2-nt ptr
open parsem
open parsem.pnoderiv cedille.rrs cedille.cedille-rtn
open import run ptr
open noderiv {- from run.agda -}
process-start : start → string
process-start s = ""
process ... | {
"alphanum_fraction": 0.6753117207,
"avg_line_length": 41.7708333333,
"ext": "agda",
"hexsha": "29455105466e2c0710751d67a7c71130f1da17c3",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
-- Andreas, 2019-03-18, issue #3122, AIM XXIX
-- Also pick up hidden record fields from a module.
record R : Set₂ where
field {f} : Set₁
module M where
f : Set₁
f = Set
r : R
r = record { M }
-- WAS: yellow
-- Should check.
| {
"alphanum_fraction": 0.6282051282,
"avg_line_length": 14.625,
"ext": "agda",
"hexsha": "326541abe6a49f2f28c52812a37a22e16e8f3d65",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T14:04... |
{-# OPTIONS --warning=error --safe --without-K #-}
open import LogicalFormulae
open import Semirings.Definition
open import Numbers.Naturals.Definition
open import Numbers.Naturals.Semiring
open import Orders.Total.Definition
open import Orders.Partial.Definition
module Numbers.Naturals.Order where
open Semiring ℕSem... | {
"alphanum_fraction": 0.6692670537,
"avg_line_length": 51.037037037,
"ext": "agda",
"hexsha": "120fa9396e7562912731a14c1bf4f3535500c7b5",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-11-29T13:23:07.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-11-29T1... |
open import Common.List
open import Common.Equality
map-append : ∀{A B : Set}(f : A → B) (xs {ys} : List A) →
map f (xs ++ ys) ≡ map f xs ++ map f ys
map-append f [] = refl
map-append f (x ∷ xs) = {!cong (f x ∷_)!} -- Keep section on C-c C-r
map-append₂ : ∀{A B : Set}(f : A → B) (xs {ys} : List A) →
... | {
"alphanum_fraction": 0.5211678832,
"avg_line_length": 27.4,
"ext": "agda",
"hexsha": "d6c47952be7b159f179e37e7af02960cb40af586",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T14:04:0... |
-- Normalization by Evaluation for Intuitionistic Predicate Logic (IPL)
module Everything where
-- Imports from the standard library and simple definitions
import Library
-- Types and terms of IPL
import Formulas
import Derivations
-- Beth model
import TermModel
import NfModel
-- A variant where Cover : PSh → P... | {
"alphanum_fraction": 0.8014354067,
"avg_line_length": 19.4418604651,
"ext": "agda",
"hexsha": "3ddb12ebc6aa8b5b43b0ce8fba6c7ab4085700f9",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2021-02-25T20:39:03.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-11-13T... |
module HasNeitherNor where
record HasNeitherNor (A : Set) : Set
where
field
_⊗_ : A → A → A
open HasNeitherNor ⦃ … ⦄ public
| {
"alphanum_fraction": 0.6567164179,
"avg_line_length": 13.4,
"ext": "agda",
"hexsha": "0be2bf4cbaae8e6e9858d063887dba29c1fdd228",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "5... |
{-# OPTIONS --guardedness #-}
module ky where
import Relation.Binary.PropositionalEquality as Eq
open Eq using (_≡_; _≢_; refl; cong; cong₂; sym)
open Eq.≡-Reasoning using (begin_; _≡⟨⟩_; _≡⟨_⟩_; _∎)
open import Data.Rational using (ℚ; _+_; _*_; _-_)
open import Data.Bool
open import Data.Bool.Properties
open import... | {
"alphanum_fraction": 0.5455568054,
"avg_line_length": 23.3947368421,
"ext": "agda",
"hexsha": "c5afe5cb5f75f064c0d625fb2fc66b6684a3e147",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --without-K --safe #-}
module Tools.Bool where
open import Data.Bool using (Bool; true; false; _∧_; if_then_else_) public
| {
"alphanum_fraction": 0.7058823529,
"avg_line_length": 22.6666666667,
"ext": "agda",
"hexsha": "4605bb31f86ff002af62d8ca0f8cd911d6454638",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
module Text.Greek.Script where
open import Data.Maybe
open import Data.Vec
open import Relation.Nullary using (¬_)
open import Relation.Binary.PropositionalEquality using (_≢_)
data Case : Set where
lower upper : Case
data Letter : Set where
α′ β′ γ′ δ′ ε′ ζ′ η′ θ′ ι′ κ′ λ′ μ′ ν′ ξ′ ο′ π′ ρ′ σ′ τ′ υ′ φ′ χ′ ψ′ ω′... | {
"alphanum_fraction": 0.653069005,
"avg_line_length": 32.3827160494,
"ext": "agda",
"hexsha": "3b207a228f6c8e035621923c28792b27c38087ef",
"lang": "Agda",
"max_forks_count": 5,
"max_forks_repo_forks_event_max_datetime": "2017-06-11T11:25:09.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-02-27T2... |
module Partiality where
{- port from http://www.soimort.org/posts/programs-and-proofs/ -}
open import Data.Bool using (Bool; false; true)
open import Data.Maybe using (Maybe; just; nothing)
open import Data.Char using (_==_) renaming (Char to Symbol)
open import Coinduction using (∞; ♯_; ♭)
-- open import Category.Mo... | {
"alphanum_fraction": 0.5705548274,
"avg_line_length": 27.25,
"ext": "agda",
"hexsha": "f4b92fd3172fd3bff220f0d5e7b6cb7b3d95afa8",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "... |
module Selective.Examples.Main-generated where
import Selective.Examples.PingPong as PingPong
import Selective.Examples.TestCall as Call
import Selective.Examples.TestCall2 as Call2
import Selective.Examples.Fibonacci as Fib
import Selective.Examples.Chat as Chat
import Selective.Examples.Bookstore as Bookstore
import ... | {
"alphanum_fraction": 0.8384244373,
"avg_line_length": 42.8965517241,
"ext": "agda",
"hexsha": "fe012dd13beba21357d7ee2906eebd9820b2b491",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
open import Agda.Primitive
record Functor {a b} (F : Set a → Set b) : Set (lsuc a ⊔ b) where
field
fmap : ∀ {A B} → (A → B) → F A → F B
open Functor {{...}} public
module _ {a b} (F : Set a → Set b) where
record FunctorZero : Set (lsuc a ⊔ b) where
field
empty : ∀ {A} → F A
overlap {{super}}... | {
"alphanum_fraction": 0.5696808511,
"avg_line_length": 24.1025641026,
"ext": "agda",
"hexsha": "416f8f55ead530629d8abcb8fc319a7e6c8e3bc8",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-0... |
module Issue251 where
record Foo : Set₁ where
field
A : Set
B : Set
foo : Set → Set → Foo
foo = λ A B → record {A = A; B = B}
| {
"alphanum_fraction": 0.5652173913,
"avg_line_length": 13.8,
"ext": "agda",
"hexsha": "a71ded125d44493b8a2f7107ba756091eb3d2d7b",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T14:04:0... |
{-# OPTIONS --without-K #-}
module PathLemmas where
open import Relation.Binary.PropositionalEquality using
(_≡_; sym; refl)
------------------------------------------------------------------------------
-- These also follow from irrelevance, but this is nicer
sym-sym : {A : Set} {x y : A} {p : x ≡ y} → sym (sy... | {
"alphanum_fraction": 0.4054054054,
"avg_line_length": 29.6,
"ext": "agda",
"hexsha": "66ba03ee0820971dafcda1cce674b904de54ced2",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2019-09-10T09:47:13.000Z",
"max_forks_repo_forks_event_min_datetime": "2016-05-29T01:56:33.... |
{-# OPTIONS --erased-cubical --safe #-}
module Interval where
open import Cubical.Core.Everything using (_≡_; Level; Type; Σ; _,_; fst; snd; _≃_; ~_)
open import Cubical.Foundations.Prelude using (refl; sym; _∙_; cong; transport; subst; funExt; transp; I; i0; i1)
--open import Cubical.Foundations.Function usi... | {
"alphanum_fraction": 0.6307244601,
"avg_line_length": 24.545112782,
"ext": "agda",
"hexsha": "2457a0484f27dfbb524dc01461c30763ae790ac3",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2020-11-10T04:04:40.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-01-12T1... |
{-# OPTIONS --without-K #-}
open import HoTT.Base
open import HoTT.Equivalence
open import HoTT.Identity.Pi
open import HoTT.Identity.Product
module HoTT.Product.Universal where
×-univ : ∀ {i j k} {X : 𝒰 i} (A : X → 𝒰 j) (B : X → 𝒰 k) →
((c : X) → A c × B c) ≃ Π X A × Π X B
×-univ {X = X} A B = let open I... | {
"alphanum_fraction": 0.5582417582,
"avg_line_length": 28.4375,
"ext": "agda",
"hexsha": "9a36a5f360b7c65aa6566ed4a77ec95b7313814f",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
{-# OPTIONS --without-K #-}
module Spaces.Spheres where
open import Base
open import Spaces.Suspension public
-- [Sⁿ n] is the sphere of dimension n
Sⁿ : ℕ → Set
Sⁿ 0 = bool
Sⁿ (S n) = suspension (Sⁿ n)
⋆Sⁿ : (n : ℕ) → Sⁿ n
⋆Sⁿ 0 = true
⋆Sⁿ (S n) = north (Sⁿ n) | {
"alphanum_fraction": 0.6301886792,
"avg_line_length": 17.6666666667,
"ext": "agda",
"hexsha": "608113cad22081fb51169db40eff492faa575ba9",
"lang": "Agda",
"max_forks_count": 50,
"max_forks_repo_forks_event_max_datetime": "2022-02-14T03:03:25.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-10... |
-- Properties of natural number
{-# OPTIONS --without-K --safe #-}
-- agad-stdlib
open import Relation.Binary.PropositionalEquality
module TypeTheory.Nat.Properties
{a}
(N : Set a)
(zero : N)
(suc : N → N)
(ind : ∀ {p} (P : N → Set p) → P zero → (∀ k → P k → P (suc k)) → ∀ n → P n)
(ind-base : ∀ {p} (P :... | {
"alphanum_fraction": 0.4487116963,
"avg_line_length": 34.2701949861,
"ext": "agda",
"hexsha": "85eb6a0e12c96a3f682362068a80270f706d1f35",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
-- Andreas, 2012-07-31 no eager introduction of hidden abstractions
{-# OPTIONS --show-implicit #-}
-- {-# OPTIONS -v tc.conv.coerce:100 #-}
-- {-# OPTIONS -v tc.with:100 #-}
module Issue679 where
data Unit : Set where
unit : Unit
-- works also now:
test : {u : Unit} → Unit
test = λ {u} → u
T : Unit → Set
T unit =... | {
"alphanum_fraction": 0.5902777778,
"avg_line_length": 20.5714285714,
"ext": "agda",
"hexsha": "cb04edf53b0fd2baf06b20321ebdbcb40b7a6e98",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:35:18.000Z",
"max_forks_repo_forks_event_min_datetime": "2022-03-12T... |
------------------------------------------------------------------------
-- The two definitions of substitutions are isomorphic (assuming
-- extensionality)
------------------------------------------------------------------------
open import Data.Universe.Indexed
module deBruijn.Substitution.Isomorphic
{i u e} {Uni... | {
"alphanum_fraction": 0.4183246073,
"avg_line_length": 39.381443299,
"ext": "agda",
"hexsha": "5cb80c322a7a4b2a34426be87c87d66b9374084c",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hex... |
------------------------------------------------------------------------
-- Overloaded "equational" reasoning combinators
------------------------------------------------------------------------
{-# OPTIONS --safe #-}
module Equational-reasoning where
open import Equality.Propositional
open import Prelude
infix -1... | {
"alphanum_fraction": 0.5261563877,
"avg_line_length": 30.9106382979,
"ext": "agda",
"hexsha": "f7422d6bf8a1b2759d24bd110acebaac1722ac83",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
open import Prelude hiding (Bool)
module Implicits.Oliveira.Improved.Deterministic (TC' : Set) (_tc≟'_ : (a b : TC') → Dec (a ≡ b)) where
{-
open import Data.Fin.Substitution
open import Implicits.Oliveira.Types
open import Implicits.Oliveira.Types.Unification
open import Implicits.Oliveira.Terms
open import Implicit... | {
"alphanum_fraction": 0.6935412027,
"avg_line_length": 32.5362318841,
"ext": "agda",
"hexsha": "917d107f109fab0643e115852e9cd43bb2f8bf50",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --rewriting #-}
module DualLM where
open import Data.Bool
open import Data.Nat hiding (compare)
open import Data.Nat.Properties
open import Data.Fin hiding (_+_)
open import Data.Product
open import Function
open import Relation.Binary.PropositionalEquality hiding (Extensionality)
open import Agda.Builtin.... | {
"alphanum_fraction": 0.5872701556,
"avg_line_length": 44.2428035044,
"ext": "agda",
"hexsha": "662a5a1a15210da86b0008fab1b084dc1f3c9aa8",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
------------------------------------------------------------------------------
-- Axiomatic PA properties
------------------------------------------------------------------------------
{-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-universe-polymorphism #-}
{-# O... | {
"alphanum_fraction": 0.4022570076,
"avg_line_length": 28.0306122449,
"ext": "agda",
"hexsha": "f884f7fa85c7226fc6b40bcbb94bcac94459118a",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2018-03-14T08:50:00.000Z",
"max_forks_repo_forks_event_min_datetime": "2016-09-19T... |
{-# OPTIONS --without-K #-}
open import HoTT
open import cohomology.Exactness
module cohomology.ExactPairIso where
{- An exact sequence 0 → G → H → 0 implies that G == H -}
module _ {i} {G H K L : Group i} {φ : H →ᴳ K}
(ex : is-exact-seq (G ⟨ cst-hom ⟩→ H ⟨ φ ⟩→ K ⟨ cst-hom ⟩→ L ⊣|)) where
private
inj : (h... | {
"alphanum_fraction": 0.4899792674,
"avg_line_length": 33.6511627907,
"ext": "agda",
"hexsha": "08af547e16523dfef03b68332395108b37c7ea02",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --copatterns --sized-types #-}
{- | The purpose of this module is to demonstrate how observational type theory
can be implemented for arbitrary types in Agda through the use of tests
and a corresponding bisimulation proof method.
To use the equivalence for a type A, the type has to be made _testable... | {
"alphanum_fraction": 0.5700879069,
"avg_line_length": 32.5019305019,
"ext": "agda",
"hexsha": "fd742115f00651c6698f9ffb0f5c695b867c1abb",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --safe #-}
open import Generics.Prelude hiding (lookup)
open import Generics.Telescope
open import Generics.Desc
open import Generics.All
open import Generics.HasDesc
import Generics.Helpers as Helpers
module Generics.Constructions.Elim {P I ℓ} {A : Indexed P I ℓ} where
module _ (H : HasDesc A) (open Ha... | {
"alphanum_fraction": 0.4997147747,
"avg_line_length": 32.462962963,
"ext": "agda",
"hexsha": "ffb28275b924e7139f21be340676e4528e2a3638",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2022-01-14T10:35:16.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-04-08T0... |
open import Theory
module Categories.Functor.Construction.Inclusion {ℓ₁ ℓ₂ ℓ₃} (Th : Theory ℓ₁ ℓ₂ ℓ₃) where
open import Syntax
open Theory.Theory Th
open Signature Sg
open Term Sg
open import Categories.Category.Construction.Renaming Sg as Renaming using (Ren; ren; _≐_)
open import Categories.Category.Construction.... | {
"alphanum_fraction": 0.5001009489,
"avg_line_length": 36.1532846715,
"ext": "agda",
"hexsha": "06c383fde79daed4a15055a4fa9c8dc0c9daef5d",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
module Haskell.Prim.Double where
open import Agda.Builtin.Nat
open import Agda.Builtin.Unit
open import Agda.Builtin.Float public renaming (Float to Double)
open import Agda.Builtin.FromNat
open import Agda.Builtin.FromNeg
instance
iNumberDouble : Number Double
iNumberDouble .Number.Constraint _ = ⊤
iNumberDou... | {
"alphanum_fraction": 0.7931726908,
"avg_line_length": 27.6666666667,
"ext": "agda",
"hexsha": "e2898a67c1fbaf2c07d0cfb5306bd9a5b56de649",
"lang": "Agda",
"max_forks_count": 18,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:42:52.000Z",
"max_forks_repo_forks_event_min_datetime": "2020-10-21... |
module Structure.Numeral.Integer.Proofs where
open import Data.Either as Either using (Left ; Right)
import Data.Tuple as Tuple
open import Functional
open import Function.Proofs
open import Logic.IntroInstances
open import Logic.Predicate
open import Logic.Propositional
import Lvl
open import Structure.Func... | {
"alphanum_fraction": 0.5004045962,
"avg_line_length": 38.8616352201,
"ext": "agda",
"hexsha": "5ce38b3b54a3fdab53172e75048667dd86ade902",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --without-K --safe #-}
module Data.Sum where
open import Level
open import Data.Bool.Base using (Bool; true; false)
open import Function using (const)
data _⊎_ (A : Type a) (B : Type b) : Type (a ℓ⊔ b) where
inl : A → A ⊎ B
inr : B → A ⊎ B
either : ∀ {ℓ} {C : A ⊎ B → Type ℓ} → ((a : A) → C (inl a))... | {
"alphanum_fraction": 0.4763819095,
"avg_line_length": 22.6136363636,
"ext": "agda",
"hexsha": "c70ad26fc5e4368cdcbfb336b06d92ecb6f3ce77",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-11-11T12:30:21.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-11-11T... |
-- Written by P. Hausmann
module Vec where
open import IO
open import Data.Vec
open import Data.Nat
open import Data.Nat.Show
open import Level using (0ℓ)
Matrix : Set -> ℕ -> ℕ -> Set
Matrix a n m = Vec (Vec a m) n
madd : {n m : ℕ} -> Matrix ℕ m n -> Matrix ℕ m n -> Matrix ℕ m n
madd a b = map (λ x → \y -> map _+_ ... | {
"alphanum_fraction": 0.5800330033,
"avg_line_length": 31.0769230769,
"ext": "agda",
"hexsha": "ae8987dab2172f13b69c840394e9f31ba70221b1",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
open import Oscar.Prelude
open import Oscar.Class.IsCategory
open import Oscar.Class.Reflexivity
open import Oscar.Class.Transitivity
module Oscar.Class.Category where
record Category 𝔬 𝔯 ℓ : Ø ↑̂ (𝔬 ∙̂ 𝔯 ∙̂ ℓ) where
constructor ∁
infix 4 _∼̇_
field
{𝔒} : Ø 𝔬
_∼_ : 𝔒 → 𝔒 → Ø 𝔯
_∼̇_ : ∀ {x ... | {
"alphanum_fraction": 0.6349892009,
"avg_line_length": 24.3684210526,
"ext": "agda",
"hexsha": "a06e703a482369f8742009f95337fe517209cb14",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
open import Common.Prelude
open import Common.Reflection
module TermSplicingLooping where
mutual
f : Set -> Set
f = unquote (give (def (quote f) []))
-- Expected error:
--
-- Termination checking failed for the following functions:
-- f
-- Problematic calls:
-- f
| {
"alphanum_fraction": 0.7018181818,
"avg_line_length": 17.1875,
"ext": "agda",
"hexsha": "3b65e5f4fe590ca61506e6e2a28ef2ac0b708601",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T14:0... |
module _ where
open import Common.Prelude renaming (_∸_ to _-_) -- work-around for #1855
_<_ : Nat → Nat → Bool
a < b with b - a
... | zero = false
... | suc _ = true
insert : Nat → List Nat → List Nat
insert x [] = x ∷ []
insert x (y ∷ xs) = if x < y then x ∷ y ∷ xs else (y ∷ insert x xs)
sort : List Nat → List ... | {
"alphanum_fraction": 0.5680819912,
"avg_line_length": 20.696969697,
"ext": "agda",
"hexsha": "3e78f03a129675265809bb5c038f3718017af2ae",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03... |
{-# OPTIONS --cubical --no-import-sorts #-}
module Number.Definitions where
open import Agda.Primitive renaming (_⊔_ to ℓ-max; lsuc to ℓ-suc; lzero to ℓ-zero)
open import Cubical.Foundations.Everything renaming (_⁻¹ to _⁻¹ᵖ; assoc to ∙-assoc)
open import Cubical.Foundations.Logic
open import Utils
open import MoreLo... | {
"alphanum_fraction": 0.8098159509,
"avg_line_length": 32.6,
"ext": "agda",
"hexsha": "90495f0e85f358ef356a2d88ab1f2e5747a0cb2b",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "1... |
open import Agda.Primitive
open import Empty
open import Logic
open import Boolean
module Peano where
data ℕ : Set where
zero : ℕ
succ : ℕ → ℕ
{-# BUILTIN NATURAL ℕ #-}
pred : ℕ → ℕ
pred zero = zero
pred (succ x) = x
_+_ : ℕ → ℕ → ℕ
zero + m = m
(succ n) + m = succ (n + m)
{-# BUILTIN NATP... | {
"alphanum_fraction": 0.5209923664,
"avg_line_length": 23.3928571429,
"ext": "agda",
"hexsha": "9a174ec33f5122919f13f19a20dbc1fb28b72659",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --without-K --rewriting #-}
open import HoTT
open import cw.CW
module cw.examples.Empty where
cw-empty-skel : Skeleton {lzero} 0
cw-empty-skel = Empty , Empty-is-set
CWEmpty = ⟦ cw-empty-skel ⟧
CWEmpty-equiv-Empty : CWEmpty ≃ Empty
CWEmpty-equiv-Empty = ide _
| {
"alphanum_fraction": 0.7111913357,
"avg_line_length": 18.4666666667,
"ext": "agda",
"hexsha": "979c70fe24a0340852c9a55de721961a66bc6814",
"lang": "Agda",
"max_forks_count": 50,
"max_forks_repo_forks_event_max_datetime": "2022-02-14T03:03:25.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-10... |
{-# OPTIONS --without-K --safe #-}
open import Categories.Category
module Categories.Category.Construction.Pullbacks {o ℓ e} (C : Category o ℓ e) where
open import Level using (_⊔_)
open import Function using (_$_)
open import Data.Product using (_×_; _,_)
open import Categories.Diagram.Pullback C
open import Categ... | {
"alphanum_fraction": 0.5789473684,
"avg_line_length": 28.2432432432,
"ext": "agda",
"hexsha": "aa727264e4c62bca40909ca06589b4a6901d9cf0",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --safe --experimental-lossy-unification #-}
module Cubical.Algebra.GradedRing.Instances.PolynomialsFun where
open import Cubical.Foundations.Prelude
open import Cubical.Data.Empty as ⊥
open import Cubical.Data.Nat hiding (_·_) renaming (_+_ to _+n_)
open import Cubical.Data.Nat.Order
open import Cubical.D... | {
"alphanum_fraction": 0.6142001711,
"avg_line_length": 30.7631578947,
"ext": "agda",
"hexsha": "8d79fe1b53b0a15df4a95a9c3527076e01a57375",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
postulate
List : Set
List-like : Set → Set
instance
postulate
List-is-list-like : List-like List
postulate
to-List : ∀ {F : Set} ⦃ list-like : ∀ {X : Set} → List-like F ⦄ → F → List
F : Set
f : ⦃ list-like : List-like F ⦄ → List
f = to-List _
| {
"alphanum_fraction": 0.5588235294,
"avg_line_length": 17,
"ext": "agda",
"hexsha": "6063c25b2ec5dc6397db796bf14b36e6d2322207",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T14:04:08.... |
{-# OPTIONS --safe #-}
module Cubical.Algebra.CommRingSolver.Utility where
open import Cubical.Foundations.Prelude
open import Cubical.Data.Bool
open import Cubical.Data.Empty using (⊥) renaming (rec to recEmpty)
open import Cubical.Data.Sigma
open import Cubical.Relation.Nullary.Base
private
variable
ℓ ℓ' : ... | {
"alphanum_fraction": 0.6804788214,
"avg_line_length": 28.5789473684,
"ext": "agda",
"hexsha": "76878e38e26bf1686d9ad8ca96dab8495c405409",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-
This file contains:
- Homotopy natural equivalences of pushout spans
Written by: Loïc Pujet, September 2019
- 3×3 lemma for pushouts
Written by: Loïc Pujet, April 2019
-}
{-# OPTIONS --cubical --safe #-}
module Cubical.HITs.Pushout.Properties where
open import Cubical.Core.Glue
open import Cubical.Founda... | {
"alphanum_fraction": 0.4853759196,
"avg_line_length": 35.4968152866,
"ext": "agda",
"hexsha": "57100c5b6fe2e605dbe0d2031df93155b97cc16c",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- Convenient syntax for "equational reasoning" using a strict partial
-- order
------------------------------------------------------------------------
open import Relation.Binary
module Relation.Binary.StrictPar... | {
"alphanum_fraction": 0.5761821366,
"avg_line_length": 35.6875,
"ext": "agda",
"hexsha": "62a13eb6ebe14dfba782ae81cca9385b4b8902c1",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
{-# OPTIONS --rewriting #-}
open import ExtractSac as ES using ()
open import Extract (ES.kompile-fun)
open import Data.Nat
open import Data.Nat.Properties
open import Data.List as L using (List; []; _∷_)
open import Data.Vec as V using (Vec; []; _∷_)
open import Data.Fin using (Fin; zero; suc; #_)
open import Relati... | {
"alphanum_fraction": 0.4829485834,
"avg_line_length": 27.6231884058,
"ext": "agda",
"hexsha": "a6ee02d121ce0fc5bdd2d5c747fcf6e3a1d3aa06",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --cubical --safe #-}
module ScaleDegree where
open import Data.Fin using (Fin; toℕ; #_)
open import Data.Nat using (ℕ; suc; _+_)
open import Data.Nat.DivMod using (_mod_; _div_)
open import Data.Product using (_×_; _,_)
open import Data.Vec using (lookup)
open import Pitch
ScaleD... | {
"alphanum_fraction": 0.6652835408,
"avg_line_length": 26.7777777778,
"ext": "agda",
"hexsha": "9a26d03beabc45ce21303c3b7faaf7a36ca4726b",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2020-11-10T04:04:40.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-01-12T... |
open import Data.Product using ( _,_ ; proj₁ ; proj₂ )
open import Web.Semantic.DL.ABox.Interp using
( Interp ; _*_ ; ⌊_⌋ ; ind )
open import Web.Semantic.DL.ABox.Interp.Morphism using
( _≲_ ; _**_ ; ≲-refl )
open import Web.Semantic.DL.ABox.Model using
( _⊨a_ ; _⊨b_ ; *-resp-⟨ABox⟩ ; ⊨a-resp-≲ )
open import Web.... | {
"alphanum_fraction": 0.5295675199,
"avg_line_length": 43.0253164557,
"ext": "agda",
"hexsha": "b25c0d413e6dcab4342936815d6f90d2529d2804",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:40:03.000Z",
"max_forks_repo_forks_event_min_datetime": "2017-12-03T... |
{-# OPTIONS --rewriting --confluence-check #-}
module Issue4333.N0 where
open import Issue4333.M
{-# REWRITE p₀ #-}
b₀' : B a₀'
b₀' = b
| {
"alphanum_fraction": 0.652173913,
"avg_line_length": 15.3333333333,
"ext": "agda",
"hexsha": "9af365e3f0f4a622791bcde32a027a264fd7c824",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03... |
module Relation.Relation where
open import Level renaming (suc to lsuc)
open import Data.Product
-- Partial equivalence relations.
record ParRel {l l' : Level}{A : Set l}(R : A → A → Set l') : Set (l ⊔ l') where
field
symPf : ∀{x y} → R x y → R y x
transPf : ∀{x y z} → R x y → R y z → R x z
-- (Total) eq... | {
"alphanum_fraction": 0.550553224,
"avg_line_length": 33.1772151899,
"ext": "agda",
"hexsha": "78fbd97ac608303b619e98dbaf6660cf030c7ac1",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hex... |
open import Agda.Primitive public
variable
ℓ ℓ' : Level
data _≡_ {X : Set ℓ} : X → X → Set ℓ where
refl : {x : X} → x ≡ x
ap : {X : Set ℓ} {Y : Set ℓ'} (f : X → Y) {x x' : X} → x ≡ x' → f x ≡ f x'
ap f refl = refl
_∙_ : {X : Set ℓ} {x y z : X} → x ≡ y → y ≡ z → x ≡ z
p ∙ refl = p
yoneda-elem-lc : {X : Set ℓ} {... | {
"alphanum_fraction": 0.3291796469,
"avg_line_length": 33.2068965517,
"ext": "agda",
"hexsha": "3efae377466dd1daadb7108b78e59b3a82ff061f",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-0... |
{-# OPTIONS --type-in-type #-}
module Generic.Test.Experiment where
open import Generic.Lib.Prelude
data Desc (I : Set) : Set₁ where
ret : I -> Desc I
π : (A : Set) -> (A -> Desc I) -> Desc I
_⊕_ : Desc I -> Desc I -> Desc I
data RecDesc (I : Set) : Set₁ where
rec : ((I -> Set) -> Desc I) -> RecDesc I
⟦_... | {
"alphanum_fraction": 0.4770689213,
"avg_line_length": 30.7322834646,
"ext": "agda",
"hexsha": "a7d444e7347795815c1baac5841f01b826827889",
"lang": "Agda",
"max_forks_count": 4,
"max_forks_repo_forks_event_max_datetime": "2021-01-27T12:57:09.000Z",
"max_forks_repo_forks_event_min_datetime": "2017-07-17T... |
{-# OPTIONS --universe-polymorphism #-}
open import Categories.Category
open import Categories.Object.Products
open import Categories.Object.Terminal
open import Level
module Categories.Object.Terminal.Exponentiating {o ℓ e : Level}
(C : Category o ℓ e)
(P : Products C) where
open Category C
open Products P
... | {
"alphanum_fraction": 0.768115942,
"avg_line_length": 24.84,
"ext": "agda",
"hexsha": "fd1f5994531d569cb4864695a4da9c4b184a6c7a",
"lang": "Agda",
"max_forks_count": 23,
"max_forks_repo_forks_event_max_datetime": "2021-11-11T13:50:56.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-02-05T13:03:09... |
{-# OPTIONS --safe #-}
module Cubical.Data.FinSet.Binary.Small where
open import Cubical.Data.FinSet.Binary.Small.Base public
open import Cubical.Data.FinSet.Binary.Small.Properties public
| {
"alphanum_fraction": 0.7958115183,
"avg_line_length": 27.2857142857,
"ext": "agda",
"hexsha": "72070faebd474a9e2a449f8ffbccc2cc7dff1d3d",
"lang": "Agda",
"max_forks_count": 134,
"max_forks_repo_forks_event_max_datetime": "2022-03-23T16:22:13.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-11-1... |
{-# OPTIONS --without-K --safe #-}
module Fragment.Examples.CSemigroup.Arith.Atomic where
open import Fragment.Examples.CSemigroup.Arith.Base
-- Fully dynamic associativity
+-dyn-assoc₁ : ∀ {m n o} → (m + n) + o ≡ m + (n + o)
+-dyn-assoc₁ = fragment CSemigroupFrex +-csemigroup
+-dyn-assoc₂ : ∀ {m n o p} → ((m + n)... | {
"alphanum_fraction": 0.5436101234,
"avg_line_length": 37.9444444444,
"ext": "agda",
"hexsha": "6b64edfbd9378a71c7b1b9fb2000829b29274047",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2021-06-16T08:04:31.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-06-15T... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- Inductive pointwise lifting of relations to vectors
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
module Data.Vec.Relation.Binary.Pointwise.Inductiv... | {
"alphanum_fraction": 0.4491184658,
"avg_line_length": 37.1609195402,
"ext": "agda",
"hexsha": "754999393f68c90fdfcf6ee508e9c640334d56c9",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
module map-++-distribute where
import Relation.Binary.PropositionalEquality as Eq
open Eq using (_≡_; refl; cong)
open Eq.≡-Reasoning
open import lists using (List; []; _∷_; _++_; map)
-- リストの結合に関するmapの分配法則の証明
map-++-distribute : {A B : Set} → (f : A → B) → (xs ys : List A)
→ map f (xs ++ ys) ≡ map f xs ++ map f ys... | {
"alphanum_fraction": 0.5267175573,
"avg_line_length": 22.5862068966,
"ext": "agda",
"hexsha": "fe56b00ced79c4a2a5fe6271f61e97095f15a3c6",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- Floats
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
module Data.Float where
open import Data.String.Base using (String)
-------------------------... | {
"alphanum_fraction": 0.3811023622,
"avg_line_length": 22.6785714286,
"ext": "agda",
"hexsha": "d52733a5b127f2fcf66cec5c5b8b578233cc49c0",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-
This file contains:
- Properties of set truncations
-}
{-# OPTIONS --cubical --no-import-sorts --safe #-}
module Cubical.HITs.SetTruncation.Properties where
open import Cubical.HITs.SetTruncation.Base
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.GroupoidLaws
open import Cubical.Founda... | {
"alphanum_fraction": 0.4920115925,
"avg_line_length": 42.053125,
"ext": "agda",
"hexsha": "b6478557d14a3bd39c666ba3fc7099f7d68daf13",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha... |
{-
Finite Structures over Finite Set
In short, the type of structures should be finite set itself.
This file contains:
- Definition and properties of finite sets equipped with finite structures;
- The type of finitely-structured finite sets is Rijke finite,
so that we can count their number up to equivalence/isom... | {
"alphanum_fraction": 0.7130242826,
"avg_line_length": 34.8461538462,
"ext": "agda",
"hexsha": "b34df802cd7f01efccbc37786fdc6bc6a43647e6",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
open import List
open import Nat
open import Prelude
open import contexts
open import core
module statics-core where
open core public
-- zippered form of types
data ztyp : Set where
▹_◃ : htyp → ztyp
_==>₁_ : ztyp → htyp → ztyp
_==>₂_ : htyp → ztyp → ztyp
_⊕₁_ : ztyp → htyp → ztyp
_⊕... | {
"alphanum_fraction": 0.3343341117,
"avg_line_length": 48.6985559567,
"ext": "agda",
"hexsha": "ac06752414a222ab2ca96bec5babc807b1c171db",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
------------------------------------------------------------------------------
-- PA properties
------------------------------------------------------------------------------
{-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-universe-polymorphism #-}
{-# OPTIONS --w... | {
"alphanum_fraction": 0.5024038462,
"avg_line_length": 28.6896551724,
"ext": "agda",
"hexsha": "67b82a28591c8f51cb9f79cd487a5330b514723d",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2018-03-14T08:50:00.000Z",
"max_forks_repo_forks_event_min_datetime": "2016-09-19T... |
{-# OPTIONS --prop --without-K --rewriting #-}
-- Definition of a cost monoid.
open import Relation.Binary using (Rel; _Preserves_⟶_; _Preserves₂_⟶_⟶_)
module Calf.CostMonoid where
open import Level using (Level; 0ℓ; suc; _⊔_)
open import Algebra.Core
open import Relation.Binary.PropositionalEquality using (_≡_; re... | {
"alphanum_fraction": 0.5642857143,
"avg_line_length": 25.2577319588,
"ext": "agda",
"hexsha": "49587bb7ba7fe9c2bd9dd7973491abd724f056ff",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-01-29T08:12:01.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-10-06T... |
-- Minimal implicational logic, PHOAS approach, initial encoding
module Pi.ArrMp where
-- Types
infixr 0 _=>_
data Ty : Set where
UNIT : Ty
_=>_ : Ty -> Ty -> Ty
-- Context and truth judgement
Cx : Set1
Cx = Ty -> Set
isTrue : Ty -> Cx -> Set
isTrue a tc = tc a
-- Terms
module ArrMp where
i... | {
"alphanum_fraction": 0.4765279008,
"avg_line_length": 18.2096774194,
"ext": "agda",
"hexsha": "11c2f0f2753004a2ba0d4fff40915341c0997c04",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
{-# OPTIONS --without-K #-}
module container.m where
open import container.m.coalgebra public
open import container.m.from-nat public
-- open import container.m.core public
-- open import container.m.extensionality public
-- open import container.m.level public
| {
"alphanum_fraction": 0.7765151515,
"avg_line_length": 26.4,
"ext": "agda",
"hexsha": "cc9fc79b8341ff8119b41d88f4e4e84dedcc721e",
"lang": "Agda",
"max_forks_count": 4,
"max_forks_repo_forks_event_max_datetime": "2019-05-04T19:31:00.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-02-02T12:17:00.... |
{-# OPTIONS --guardedness-preserving-type-constructors #-}
module TypeConstructorsWhichPreserveGuardedness2 where
record ⊤ : Set where
data _⊎_ (A B : Set) : Set where
inj₁ : A → A ⊎ B
inj₂ : B → A ⊎ B
-- This should not be allowed.
ℕ : Set
ℕ = ⊤ ⊎ ℕ
| {
"alphanum_fraction": 0.6576923077,
"avg_line_length": 17.3333333333,
"ext": "agda",
"hexsha": "32c71645ae7956573068ca89c044870ed9ba1b74",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2019-03-05T20:02:38.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-03-05T... |
{-# OPTIONS --without-K #-}
open import BaseOver
module Spaces.Flattening {i j k}
(A : Set i) (B : Set j) (f g : B → A)
(C : A → Set k) (D : (b : B) → C (f b) ≃ C (g b)) where
open import Spaces.FlatteningTypes A B f g C D
-- The family of paths used in the definition of [flatten]
paths-flatten : (b : B) → (cct... | {
"alphanum_fraction": 0.4886773031,
"avg_line_length": 46.8192771084,
"ext": "agda",
"hexsha": "fdf8c689b57f4d8f0022bfe03508b7a220fcaae4",
"lang": "Agda",
"max_forks_count": 50,
"max_forks_repo_forks_event_max_datetime": "2022-02-14T03:03:25.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-10... |
{-# OPTIONS --cubical #-}
open import Agda.Primitive.Cubical
open import Agda.Builtin.Cubical.Path
postulate
A : Set
B : Set
b : B
f : (\ {a : A} (x : B) → b) ≡ (\ _ → b)
f i x = b
| {
"alphanum_fraction": 0.5631578947,
"avg_line_length": 14.6153846154,
"ext": "agda",
"hexsha": "05b8f509f277dd94e45dcd3d929ee9077ae2279d",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-0... |
module RandomAccessList.Zeroless where
open import RandomAccessList.Zeroless.Core
open import RandomAccessList.Zeroless.Core.Properties
open import BuildingBlock.BinaryLeafTree using (BinaryLeafTree; Node; Leaf; split)
import BuildingBlock.BinaryLeafTree as BLT
open import Data.Fin using (Fin; fromℕ; fromℕ≤; reduce≥;... | {
"alphanum_fraction": 0.4519924099,
"avg_line_length": 38.1884057971,
"ext": "agda",
"hexsha": "9958a1574bb998fe1f8520326a427b8198e7284b",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-05-30T05:50:50.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-05-30T... |
open import Nat
open import Prelude
open import Hazelnut-core
-- the obvious small step dynamics for complete expressions.
module Hazelnut-complete-dynamics where
value : (e : ė) (p : ecomplete e) (t : τ̇) (q : ∅ ⊢ e => t) → Set
value ._ _ _ (SAsc _) = ⊥
value ._ _ _ (SVar x) with x
... | ()
value ._ _ _ (S... | {
"alphanum_fraction": 0.4750656168,
"avg_line_length": 35.71875,
"ext": "agda",
"hexsha": "3e4df99baeb71997d24e68e0f087e43d4a261dad",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha"... |
module Data.Fin where
open import Data.Nat hiding (_==_; _<_)
open import Data.Bool
open import Logic.Identity
open import Logic.Base
data Fin : Nat -> Set where
fzero : {n : Nat} -> Fin (suc n)
fsuc : {n : Nat} -> Fin n -> Fin (suc n)
pred : {n : Nat} -> Fin (suc (suc n)) -> Fin (suc n)
pred fzero = fzero
... | {
"alphanum_fraction": 0.5331325301,
"avg_line_length": 31.7872340426,
"ext": "agda",
"hexsha": "eeb59d8ef2b32ce5eb51660468715368e5024696",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:35:18.000Z",
"max_forks_repo_forks_event_min_datetime": "2022-03-12T... |
-- Andreas, 2016-09-12
--
-- Underscores should also get meaningful names
-- (not just metas from omitted hidden arguments)
-- {-# OPTIONS -v tc.meta.name:100 #-}
postulate
F : (A : Set) → Set
G : {B : Set} → Set
test1 : Set
test1 = F _
-- name of this meta should be _A_0
test2 : Set
test2 = G
-- creates me... | {
"alphanum_fraction": 0.6335877863,
"avg_line_length": 17.0869565217,
"ext": "agda",
"hexsha": "21de6a27822a7905ee15413c8d4ec418ee106a60",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-0... |
open import Agda.Primitive
open import Agda.Primitive.Cubical
record Wrap : Set (lsuc lzero) where
field
A : IUniv
| {
"alphanum_fraction": 0.7459016393,
"avg_line_length": 17.4285714286,
"ext": "agda",
"hexsha": "0b204ba88b7085415bd6fe6e277d901d76be033b",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-0... |
{-
Basic theory about h-levels/n-types:
- Basic properties of isContr, isProp and isSet (definitions are in Prelude)
- Hedberg's theorem can be found in Cubical/Relation/Nullary/DecidableEq
-}
{-# OPTIONS --cubical --no-import-sorts --safe #-}
module Cubical.Foundations.HLevels where
open import Cubical.Foundation... | {
"alphanum_fraction": 0.5590241504,
"avg_line_length": 38.1995305164,
"ext": "agda",
"hexsha": "864b4c0e594333f22aecd852ec9d4499a938f4c6",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
-- Andreas, 2017-03-10, issue #2493, reported by nad
-- {-# OPTIONS -v tc.meta.assign:10 -v tc.size:90 -v tc:30 #-}
A : Set
A = {!!}
P : A → Set
P = {!λ _ → ?!} -- give
-- Giving this made Agda loop as it solved ?0 := A.
-- Solution: don't assign metas during CheckInternal!
| {
"alphanum_fraction": 0.5949820789,
"avg_line_length": 23.25,
"ext": "agda",
"hexsha": "0da323d33d71ec847e5750707987fbe88285df36",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T14:04:... |
{- Byzantine Fault Tolerant Consensus Verification in Agda, version 0.9.
Copyright (c) 2021, Oracle and/or its affiliates.
Licensed under the Universal Permissive License v 1.0 as shown at https://opensource.oracle.com/licenses/upl
-}
open import Haskell.Modules.RWS.RustAnyHow
import LibraBFT.Impl.Consensu... | {
"alphanum_fraction": 0.6030998627,
"avg_line_length": 43.9396551724,
"ext": "agda",
"hexsha": "c4f1d4a855becbe50ee1f4eb9e422630791b29fb",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
open import Prelude
module Implicits.Oliveira.Deterministic.Decidable where
open import Data.Fin.Substitution
open import Implicits.Oliveira.Types
open import Implicits.Oliveira.Terms
open import Implicits.Oliveira.Contexts
open import Implicits.Oliveira.Substitutions
open import Implicits.Oliveira.Substitutions.Lemm... | {
"alphanum_fraction": 0.5279971285,
"avg_line_length": 46.4333333333,
"ext": "agda",
"hexsha": "ec0eec7c1d718e7ee4ac664719c71e7a2bdd4ca6",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
-- Basic intuitionistic logic of proofs, without ∨, ⊥, or +.
-- Common syntax.
module BasicILP.Syntax.Common where
open import Common.ContextPair public
| {
"alphanum_fraction": 0.7548387097,
"avg_line_length": 22.1428571429,
"ext": "agda",
"hexsha": "536e086d4654cd96dd21a854c5e80a68bea76156",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
-- https://github.com/bitonic/tog/wiki/Implicit-Arguments
-- aj s popisom checkingu od Andreasa Abela
module ImplArg where
data Nat : Set where
zero : Nat
suc : Nat -> Nat
data Vec (A : Set) : Nat -> Set where
vnil : Vec A zero
vcons : {n : Nat} -> A -> Vec A n -> Vec A (suc n)
Cons = {A : Set} (a : A) {n ... | {
"alphanum_fraction": 0.6,
"avg_line_length": 22.6470588235,
"ext": "agda",
"hexsha": "41968710a075acce19690e811738511e56cfb2e2",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "d... |
open import Relation.Binary.PropositionalEquality using (_≡_; refl)
module Dipsy.Polarity where
data Polarity : Set where
pos : Polarity
neg : Polarity
open import Algebra.FunctionProperties {A = Polarity} _≡_
flip : Polarity → Polarity
flip pos = neg
flip neg = pos
flip-inv : Involutive flip
flip-inv pos = re... | {
"alphanum_fraction": 0.749271137,
"avg_line_length": 19.0555555556,
"ext": "agda",
"hexsha": "febf0d7a1e13e239ba888591444ca7a9909d7699",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hex... |
postulate
A B C : Set
module M where
infixl 4 _+_
infixl 6 _*_
postulate
_+_ _*_ : Set → Set → Set
T : Set
T = A + B * C
open M renaming (_*_ to infix 2 _*_)
test : T → A + B * C
test x = x -- should use the updated fixity when printing the value of T !
| {
"alphanum_fraction": 0.5827338129,
"avg_line_length": 13.9,
"ext": "agda",
"hexsha": "637617ce49be5babf8552d3cc32c3a6bf5001425",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T14:04:0... |
{-# OPTIONS --warning=error --safe --without-K #-}
open import LogicalFormulae
open import Numbers.Naturals.Definition
open import Numbers.Naturals.Addition
module Numbers.Naturals.Multiplication where
infix 25 _*N_
_*N_ : ℕ → ℕ → ℕ
zero *N y = zero
(succ x) *N y = y +N (x *N y)
{-# BUILTIN NATTIMES _*N_ #-}
produc... | {
"alphanum_fraction": 0.6780687689,
"avg_line_length": 58.46875,
"ext": "agda",
"hexsha": "6acf7cc9533d0e5da986687478029cfaa107afad",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-11-29T13:23:07.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-11-29T13:23... |
open import Nat
open import Prelude
open import List
open import judgemental-erase
open import moveerase
open import sensibility
open import statics-checks
open import statics-core
module reachability where
-- algorithmically, we break reachability into two halves: first you
-- produce a list of actions that are a... | {
"alphanum_fraction": 0.4927225792,
"avg_line_length": 52.7739130435,
"ext": "agda",
"hexsha": "6eb02f28d1ce996eb483043869dfddb4c3a2aef9",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
module UniDB.Morph.Star where
open import UniDB.Spec
infixl 4 _▻_
data Star (Ξ : MOR) : MOR where
ε : {γ : Dom} → Star Ξ γ γ
_▻_ : {γ₁ γ₂ γ₃ : Dom} (ξs : Star Ξ γ₁ γ₂) (ξ : Ξ γ₂ γ₃) → Star Ξ γ₁ γ₃
module _ {Ξ : MOR} where
instance
iIdmStar : Idm (Star Ξ)
idm {{iIdmStar}} _ = ε
iCompStar : Comp ... | {
"alphanum_fraction": 0.5089567966,
"avg_line_length": 24.9736842105,
"ext": "agda",
"hexsha": "33556e85288fc45adcbbac19b6658684bf633f64",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
module NoParseForLHS where
data X : Set where
_! : X -> X
z : X
right : X -> X
right (x !) = x
right z = z !
wrong : X -> X
wrong (! x) = x
wrong z = z !
| {
"alphanum_fraction": 0.4912280702,
"avg_line_length": 11.4,
"ext": "agda",
"hexsha": "5cdd71cc759061616647951c90242ba8d1e2398f",
"lang": "Agda",
"max_forks_count": 371,
"max_forks_repo_forks_event_max_datetime": "2022-03-30T19:00:30.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T14:04:0... |
module par-swap where
open import Esterel.Lang
open import Esterel.Lang.Binding
open import Esterel.Context
open import sn-calculus
data _∥R_ : Term -> Term -> Set where
∥Rstep : ∀ {C p q d} ->
(d≐C⟦p∥q⟧c : d ≐ C ⟦ (p ∥ q) ⟧c) ->
d ∥R (C ⟦ (q ∥ p) ⟧c)
data _∥R*_ : Term -> Term -> Set where
∥R... | {
"alphanum_fraction": 0.421509686,
"avg_line_length": 32.5434782609,
"ext": "agda",
"hexsha": "1637a63747f9eb5b51c82e2e865fc511d0199c11",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2020-04-15T20:02:49.000Z",
"max_forks_repo_forks_event_min_datetime": "2020-04-15T2... |
-- DontCares shouldn't end up in the generated with functions.
module Issue337 where
data ℕ : Set where
zero : ℕ
suc : (n : ℕ) → ℕ
{-# BUILTIN NATURAL ℕ #-}
{-# BUILTIN ZERO zero #-}
{-# BUILTIN SUC suc #-}
data _≡_ {A : Set}(x : A) : A → Set where
refl : x ≡ x
postulate
_≤_ : ℕ → ℕ → Set
p₁ ... | {
"alphanum_fraction": 0.5194174757,
"avg_line_length": 17.1666666667,
"ext": "agda",
"hexsha": "a7bcee5c8c95a1b628a28b0fd5ec840c60731a5b",
"lang": "Agda",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_he... |
open import Categories.Category
module Categories.End {o ℓ e o′ ℓ′ e′} {C : Category o ℓ e} {V : Category o′ ℓ′ e′} where
private
module C = Category C
module V = Category V
open import Categories.Bifunctor using (Bifunctor; Functor; module Functor)
open import Categories.DinaturalTransformation
open import Catego... | {
"alphanum_fraction": 0.4181494662,
"avg_line_length": 43.2307692308,
"ext": "agda",
"hexsha": "05f7eb81842dc5de5dcf6d2f1696dffdcb2c1b90",
"lang": "Agda",
"max_forks_count": 23,
"max_forks_repo_forks_event_max_datetime": "2021-11-11T13:50:56.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-02-05... |
module Lemmachine.Request where
{-# IMPORT Hack #-}
{-# IMPORT Lemmachine.FFI #-}
open import Data.Product
open import Data.List
open import Data.Maybe
open import Data.Bool
open import Data.Nat
open import Data.String
data Method : Set where
HEAD GET PUT DELETE POST : Method
TRACE CONNECT OPTIONS : Method
{-# CO... | {
"alphanum_fraction": 0.734082397,
"avg_line_length": 21.0789473684,
"ext": "agda",
"hexsha": "f26b338df483c5f40e228576626c1fc12664cca0",
"lang": "Agda",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:54:10.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-07-21T1... |
{-# OPTIONS --safe --warning=error --without-K #-}
open import LogicalFormulae
open import Setoids.Setoids
open import Functions.Definition
open import Sets.EquivalenceRelations
open import Rings.Definition
open import Rings.IntegralDomains.Definition
module Rings.Associates.Definition {a b : _} {A : Set a} {S : Seto... | {
"alphanum_fraction": 0.7152899824,
"avg_line_length": 29.9473684211,
"ext": "agda",
"hexsha": "cd5429c8f08e51c27be6ac49f7aad0f631532cc4",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-11-29T13:23:07.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-11-29T... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.