Search is not available for this dataset
text string | meta dict |
|---|---|
------------------------------------------------------------------------
-- The lenses fst and snd
------------------------------------------------------------------------
-- This module uses univalence without tracking such uses in the types
-- of functions, and it is not parametrised by a notion of equality,
-- it u... | {
"alphanum_fraction": 0.6467761314,
"avg_line_length": 32.0128205128,
"ext": "agda",
"hexsha": "4293482d4706902c8b5bde28d788631bce502bc5",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2020-07-01T14:33:26.000Z",
"max_forks_repo_forks_event_min_datetime": "2020-07-01T... |
module Bughunting where
data Nat : Set where zero : Nat
suc : Nat -> Nat
plus : Nat -> Nat -> Nat
{-# BUILTIN NATURAL Nat #-}
plus m n = {! !}
data List2 (A : Set) : Nat -> Set where
empty2 : List2 A 0
cons2 : {n : Nat} -> A -> List2 A n -> List2 A (plus 1 n)
| {
"alphanum_fraction": 0.5049180328,
"avg_line_length": 19.0625,
"ext": "agda",
"hexsha": "66493bff887ec6ea0aff26a4db8c1554cd3d2ca9",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2019-01-31T08:40:41.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-01-31T08:40:... |
{-# OPTIONS --without-K #-}
open import Library
open import Basic
--------------------------------------------------------------------------------
-- Universes for a Functor
--------------------------------------------------------------------------------
record FntrLevel : Set where
field
C : CatLevel
D : C... | {
"alphanum_fraction": 0.3956607495,
"avg_line_length": 42.25,
"ext": "agda",
"hexsha": "775b2202ee27b8f4cffafcabcc61bdd39c6cc472",
"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 --safe --cubical-compatible #-}
module Erased-cubical.Without-K where
data D : Set where
c : D
| {
"alphanum_fraction": 0.6756756757,
"avg_line_length": 15.8571428571,
"ext": "agda",
"hexsha": "d4eb298790e4a4151b1e55d2843173b374840367",
"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 #-}
open import lib.Basics
open import lib.NConnected
open import lib.types.Nat
open import lib.types.TLevel
open import lib.types.Empty
open import lib.types.Group
open import lib.types.Pi
open import lib.types.Pointed
open import lib.types.Paths
open import lib.types.Sigma
open import lib.typ... | {
"alphanum_fraction": 0.4527543619,
"avg_line_length": 32.0817610063,
"ext": "agda",
"hexsha": "e469608d4ebc776e9081dd868702e5b4b1d26b78",
"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 #-}
module Cubical.Data.Fin.Base where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Function
open import Cubical.Foundations.HLevels
import Cubical.Data.Empty as ⊥
open import Cubical.Data.Nat using (ℕ ; zero ; suc ; _+_ ; znots)
open import Cubical.Data.Nat.Order
open i... | {
"alphanum_fraction": 0.5729008791,
"avg_line_length": 29.4553571429,
"ext": "agda",
"hexsha": "491f4e0537d62197c97a5b35f5c4bc2d1590e50c",
"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 #-}
module Cubical.Algebra.Monoid.Instances.Nat where
open import Cubical.Foundations.Prelude
open import Cubical.Data.Nat
open import Cubical.Algebra.Monoid
NatMonoid : Monoid ℓ-zero
fst NatMonoid = ℕ
MonoidStr.ε (snd NatMonoid) = 0
MonoidStr._·_ (snd NatMonoid) = _+_
MonoidStr.isMonoid (snd Na... | {
"alphanum_fraction": 0.7546174142,
"avg_line_length": 23.6875,
"ext": "agda",
"hexsha": "2d0eb95aab9907544e11b940ad1e9d8e65636061",
"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":... |
-- Andreas, 2016-12-03, issue 2307
-- preserve record (vs. constructor) in internal syntax
open import Common.Equality
postulate
A : Set
a : A
record R : Set where
constructor c
field f : A
open R
postulate
r : R
g h : R → R
fail1 : g (c a) ≡ h (record{ f = a })
fail1 = refl
-- ERROR: g (c a) != h... | {
"alphanum_fraction": 0.5833333333,
"avg_line_length": 15.5,
"ext": "agda",
"hexsha": "4403b33ce52e87f396ea660ce41df76e694d93db",
"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 --safe --warning=error --without-K #-}
open import Agda.Primitive using (Level; lzero; lsuc; _⊔_)
open import Functions.Definition
open import Numbers.Naturals.Definition
open import Sets.FinSet.Definition
open import Setoids.Setoids
module Setoids.Cardinality.Finite.Definition where
record FiniteSetoid ... | {
"alphanum_fraction": 0.716,
"avg_line_length": 29.4117647059,
"ext": "agda",
"hexsha": "c8c871b89c94680cf1f683702da969fb024e5ad5",
"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:0... |
{-# OPTIONS --without-K --safe #-}
module Categories.Functor.Representable where
-- A Presheaf (into Setoids) is representation if it is naturally isomorphic to a Hom functor
-- over a particular object A of the base category.
open import Level
open import Categories.Category using (Category)
open import Categories.... | {
"alphanum_fraction": 0.7581081081,
"avg_line_length": 35.2380952381,
"ext": "agda",
"hexsha": "56f3630c38ec838d02f31100b9ead771c8ecacd4",
"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 _ where
open import Agda.Primitive.Cubical hiding (PathP)
postulate
PathP : ∀ {ℓ} (A : I → Set ℓ) → A i0 → A i1 → Set ℓ
{-# BUILTIN PATHP PathP #-}
| {
"alphanum_fraction": 0.5906432749,
"avg_line_length": 19,
"ext": "agda",
"hexsha": "e8f883bfb628aef14524f8404ed6d3f937c16905",
"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.... |
module Numeral.Integer.Relation.Divisibility.Proofs where
open import Functional
open import Logic.Propositional
import Numeral.Natural.Relation.Divisibility as ℕ
import Numeral.Natural.Relation.Divisibility.Proofs as ℕ
open import Numeral.Natural using (ℕ)
import Numeral.Natural.Oper as ℕ
open import N... | {
"alphanum_fraction": 0.5639686684,
"avg_line_length": 39.2820512821,
"ext": "agda",
"hexsha": "edc9f943c6972d4a3da8b60f600f3166a8eb900c",
"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 lib.Basics
open import lib.NType2
open import lib.types.Nat
open import lib.types.Subtype
module lib.types.Fin where
Fin : ℕ → Type₀
Fin n = Σ ℕ (_< n)
instance
Fin-reader : ∀ {n} → FromNat (Fin n)
FromNat.in-range (Fin-reader {n}) m = m < n
FromNat.read (Fi... | {
"alphanum_fraction": 0.492991453,
"avg_line_length": 27.0833333333,
"ext": "agda",
"hexsha": "9d2beb38d8cfc72620fb092eee1d97d59afe8e83",
"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-10T... |
module Logic.Names where
open import Functional
import Lvl
open import Logic
open import Logic.Predicate
open import Logic.Propositional
module _ {ℓ} where
ExcludedMiddleOn : Stmt{ℓ} → Stmt
ExcludedMiddleOn(X) = (X ∨ (¬ X))
ExcludedMiddle = ∀ₗ(ExcludedMiddleOn)
WeakExcludedMiddleOn = ExcludedMiddleOn ∘ ... | {
"alphanum_fraction": 0.6381182147,
"avg_line_length": 32.7236842105,
"ext": "agda",
"hexsha": "966c2d0caefb1251411bc57137d450b88a9cd591",
"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 Web.URI.Everything where
import Web.URI
import Web.URI.Examples.HelloWorld
import Web.URI.Primitive
import Web.URI.Port
import Web.URI.Port.Primitive
import Web.URI.Scheme
import Web.URI.Scheme.Primitive
| {
"alphanum_fraction": 0.8262910798,
"avg_line_length": 19.3636363636,
"ext": "agda",
"hexsha": "c5683e68c56b1b8e31015934255ac870f48f10db",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:37:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2022-03-12T... |
------------------------------------------------------------------------------
-- Example of a partial function
------------------------------------------------------------------------------
{-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-universe-polymorphism #-}... | {
"alphanum_fraction": 0.4631490787,
"avg_line_length": 35.1176470588,
"ext": "agda",
"hexsha": "1dbdd8a4d6360858ff393c9639482c0f12657c9e",
"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... |
module Integer10 where
open import Relation.Binary.PropositionalEquality
as PropEq using (_≡_; refl)
-- 整数の素朴な定義
--(succ (succ (pred zero))などが有効、という弱点がある)
data ℤ : Set where
zero : ℤ
succ : ℤ → ℤ
pred : ℤ → ℤ
-- 加法
_+_ : ℤ → ℤ → ℤ
zero + y = y
succ x + zero = succ x
succ x + succ y = succ (su... | {
"alphanum_fraction": 0.5586380832,
"avg_line_length": 19.3414634146,
"ext": "agda",
"hexsha": "f2eae749895f76e107941230082fc97703135e5c",
"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
--
-- Some examples showing how the Function.Reasoning module
-- can be used to perform "functional reasoning" similar to what is being
-- described in: https://stackoverflow.com/q/22676703/3168666
--------------------... | {
"alphanum_fraction": 0.5538720539,
"avg_line_length": 34.4347826087,
"ext": "agda",
"hexsha": "15472fa6299397741d635d94de14df9eacc45a12",
"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... |
------------------------------------------------------------------------
-- Safe modules that use --without-K
------------------------------------------------------------------------
{-# OPTIONS --safe --without-K #-}
module README.Safe.Without-K where
-- Definitions of some basic types and some related functions.
... | {
"alphanum_fraction": 0.768220962,
"avg_line_length": 21.2071269488,
"ext": "agda",
"hexsha": "6d1d48194ca076b357a960deed870efad1a5cb1e",
"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... |
-- An implementation of terminating parsers due to Conor McBride and
-- James McKinna, as presented in the talk Seeing and Doing at the
-- Workshop on Termination and Type Theory, Hindås, Sweden, 2002.
{-# OPTIONS --type-in-type #-}
module SeeingAndDoing where
open import Data.Unit
open import Data.Bool
open import ... | {
"alphanum_fraction": 0.4800422945,
"avg_line_length": 28.0222222222,
"ext": "agda",
"hexsha": "c81043de68ece30e9cdad657ad961c80154a9b83",
"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 IrrelevantLambda where
postulate
A : Set
P : A -> Set
f : _ -> Set
f = λ .x -> P x
-- fails because irrelevant lambda may not introduce relevant function type | {
"alphanum_fraction": 0.6900584795,
"avg_line_length": 19,
"ext": "agda",
"hexsha": "4508097cc8e952e68541a70c58808dbf3448780b",
"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": "70c... |
module NonLinearConstraint where
import Common.Level
open import Common.Equality
test : let X : Set -> Set -> Set
X = _
in (A : Set) -> X A A ≡ A
test A = refl
-- should not be solved, solution not uniquely determined
| {
"alphanum_fraction": 0.6512605042,
"avg_line_length": 21.6363636364,
"ext": "agda",
"hexsha": "712b640666a588e45e898e027fb2c89d23e4c25b",
"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 --universe-polymorphism #-}
open import Categories.Category
module Categories.Object.BinaryProducts {o ℓ e} (C : Category o ℓ e) where
open Category C
open Equiv
open import Level
import Categories.Object.Product as Product
import Categories.Object.Product.Morphisms as ProductMorphisms
open import Cate... | {
"alphanum_fraction": 0.4021610225,
"avg_line_length": 32.5708154506,
"ext": "agda",
"hexsha": "53ac0a72f14e298016e884206ec70fad5b82a0f0",
"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... |
open import Relation.Binary.Core
module InsertSort.Impl1.Correctness.Permutation.Base {A : Set}
(_≤_ : A → A → Set)
(tot≤ : Total _≤_) where
open import Data.List
open import Data.Sum
open import InsertSort.Impl1 _≤_ tot≤
open import List.Permutation.Base A
lemma-insert∼/ : (x : A... | {
"alphanum_fraction": 0.605721393,
"avg_line_length": 32.16,
"ext": "agda",
"hexsha": "166d4cacf7a690b0eca36c84d8de1cf11e974478",
"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": "b... |
-- Lifting of substitutions, and instance of strength for δ
module SOAS.Coalgebraic.Lift {T : Set} where
open import SOAS.Common
open import SOAS.Context {T}
open import SOAS.Variable
open import SOAS.Families.Core {T}
import SOAS.Families.Delta {T} as δ; open δ.Sorted
open import SOAS.Abstract.Hom {T}
import SOAS.Ab... | {
"alphanum_fraction": 0.483391074,
"avg_line_length": 35.3021582734,
"ext": "agda",
"hexsha": "558eedd836bcce9a1fc23ee93afed502f9e3580e",
"lang": "Agda",
"max_forks_count": 4,
"max_forks_repo_forks_event_max_datetime": "2022-01-24T12:49:17.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-11-09T2... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- This module is DEPRECATED.
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
open import Relation.Binary using (Rel; Setoid; Substitutive; Symmetric; To... | {
"alphanum_fraction": 0.5697278912,
"avg_line_length": 29.4,
"ext": "agda",
"hexsha": "9337494c39f2344e86a35047d06f93a6d4344433",
"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-04T06:54:45.... |
module Issue453 where
postulate
A : Set
fails : {x : _} → A
| {
"alphanum_fraction": 0.5714285714,
"avg_line_length": 10,
"ext": "agda",
"hexsha": "ae57318d382bd8270c14fd4cd80eae0ca3a22d3b",
"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 --cubical --no-import-sorts --safe #-}
module Cubical.ZCohomology.Groups.Unit where
open import Cubical.ZCohomology.Base
open import Cubical.ZCohomology.Properties
open import Cubical.HITs.Sn
open import Cubical.Foundations.HLevels
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Iso... | {
"alphanum_fraction": 0.6470940683,
"avg_line_length": 43.3506493506,
"ext": "agda",
"hexsha": "62530cf7d7fa9d9ca6d9f14ff0a241a25730cdae",
"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 --no-import-sorts --allow-unsolved-metas #-}
module Number.Operations.Details where
open import Cubical.Foundations.Everything renaming (_⁻¹ to _⁻¹ᵖ; assoc to ∙-assoc)
open import Cubical.Relation.Nullary.Base -- ¬_
open import Cubical.Data.Unit.Base -- Unit
open import Cubical.Data.Sigma.Base r... | {
"alphanum_fraction": 0.4077801298,
"avg_line_length": 64.7573033708,
"ext": "agda",
"hexsha": "7173b518c780c16d4b3367c94e0d904e8afc6c07",
"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 #-}
{-# OPTIONS --show-implicit #-}
module NaturalDeduction-PatternLambdaBug
where
record ⊤ : Set where
data ⊥ : Set where
foo : ⦃ _ : ⊤ ⦄ → ⊥ → Set
foo = λ {x → {!x!}}
{-
C-c C-c above generates invalid syntax:
foo = λ { }
Found an implicit lambda where an explicit lambda was ex... | {
"alphanum_fraction": 0.455495128,
"avg_line_length": 38.4407665505,
"ext": "agda",
"hexsha": "4ae1b7190e6dc5aa22271fdc6c97c3f4f9911d56",
"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... |
------------------------------------------------------------------------
-- Split surjections
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
open import Equality
module Surjection
{reflexive} (eq : ∀ {a p} → Equality-with-J a p reflexive) where
open Der... | {
"alphanum_fraction": 0.4689532201,
"avg_line_length": 32.2094594595,
"ext": "agda",
"hexsha": "5ddbec5f07e10a909bb5876d9133fb8cc147de0f",
"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.Homotopy.Whitehead where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Function
open import Cubical.Foundations.Isomorphism
open import Cubical.Foundations.Equiv
open import Cubical.Foundations.Pointed
open import Cubical.... | {
"alphanum_fraction": 0.4915209675,
"avg_line_length": 37.0170316302,
"ext": "agda",
"hexsha": "2198fdee3bb9b94e757ce7e62f9a346e1236e69e",
"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... |
------------------------------------------------------------------------------
-- Data and postulates
------------------------------------------------------------------------------
{-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-universe-polymorphism #-}
{-# OPTIO... | {
"alphanum_fraction": 0.430324277,
"avg_line_length": 30.4266666667,
"ext": "agda",
"hexsha": "d4a576932de3da699f1921e2c2cd8505c61b26ec",
"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-19T1... |
import Common.Reflect
data _≡_ {A : Set} (x : A) : A → Set where
refl : x ≡ x
data Bool : Set where
true false : Bool
data True : Set where
true : True
-- Should print names as "quote Bool.true" (making sure to disambiguate)
-- and "quote false" rather than "Issue619.Bool.true/false" in error message.
not-tr... | {
"alphanum_fraction": 0.6835106383,
"avg_line_length": 22.1176470588,
"ext": "agda",
"hexsha": "342e26ece44e074c961cc0fa467b4e010798d648",
"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... |
-- It seems as if our fix for singleton records was not good enough;
-- the following code was accepted by Agda 2.2.6.
-- Fixed now.
module Issue245 where
record ⊤ : Set where
postulate
A : Set
x : A
record R₁ (P : A → Set) : Set where
field
f : P x
record R₂ : Set₁ where
field
F : A → Set
f : R... | {
"alphanum_fraction": 0.5933098592,
"avg_line_length": 15.7777777778,
"ext": "agda",
"hexsha": "7b703e070f95077b0b5d7651bc2684ea3d570880",
"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.Builtin.IO
open import Agda.Builtin.Reflection
open import Agda.Builtin.Strict
open import Agda.Builtin.String
open import Agda.Builtin.Unit
postulate
putStr : String → IO ⊤
{-# FOREIGN GHC import qualified Data.Text.IO #-}
{-# COMPILE GHC putStr = Data.Text.IO.putStr #-}
{-# COMPILE JS putStr =
... | {
"alphanum_fraction": 0.6861924686,
"avg_line_length": 25.1578947368,
"ext": "agda",
"hexsha": "50c04bf572495e68077782ba7124ec60a6676b95",
"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 --sized-types #-}
module SizedTypesFunctionFromSuccSize where
open import Common.Size
data Nat : {size : Size} → Set where
zero : {size : Size} → Nat {↑ size}
suc : {size : Size} → Nat {size} → Nat {↑ size}
bad : {i : Size} → Nat {↑ i} → Set
bad zero = bad zero
bad (suc x) = Nat
| {
"alphanum_fraction": 0.6032786885,
"avg_line_length": 20.3333333333,
"ext": "agda",
"hexsha": "ddade568ad78cb163f0616341629b0cd0b294b39",
"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... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- Properties of operations on strings
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
module Data.String.Properties where
open import Data.Bool.Base us... | {
"alphanum_fraction": 0.6163969795,
"avg_line_length": 27.2647058824,
"ext": "agda",
"hexsha": "e7947bb79bf5911e9326815c0d9dde7b559687bd",
"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... |
-- {-# OPTIONS --show-implicit #-}
-- {-# OPTIONS -v tc.with.top:25 #-}
-- {-# OPTIONS -v tc.with:40 -v tc.interaction:20 -v interaction.give:20 -v tc:10 #-}
open import Common.Equality
data Unit : Set where
unit : Unit
id : (A : Set) → A → A
id A a = a
module Works where
dx : (x : Unit) → Unit → Unit
dx x u... | {
"alphanum_fraction": 0.5934579439,
"avg_line_length": 20.9803921569,
"ext": "agda",
"hexsha": "ad55d2e15966bb2e23dc184372bb7667296ec66d",
"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 --cubical --no-import-sorts #-}
open import Agda.Primitive renaming (_⊔_ to ℓ-max; lsuc to ℓ-suc; lzero to ℓ-zero)
module Number.Bundles where
private
variable
ℓ ℓ' : Level
open import Cubical.Foundations.Everything renaming (_⁻¹ to _⁻¹ᵖ; assoc to ∙-assoc)
open import Cubical.Relation.Binary.Base ... | {
"alphanum_fraction": 0.6120810757,
"avg_line_length": 28.9709302326,
"ext": "agda",
"hexsha": "e7321321efe964235dbbfc82bde4d47ff44e5db8",
"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 Lvl where
open import Type
open import Agda.Primitive public
using (Level; _⊔_)
renaming (lzero to 𝟎; lsuc to 𝐒)
-- Wraps a lower level set in a higher level wrapper set.
record Up {ℓ₁ ℓ₂} (T : Type{ℓ₂}) : Type{ℓ₁ ⊔ ℓ₂} where
constructor up
field obj : T
of : ∀{ℓ} → Type{ℓ} → Level
of {ℓ} _ = ℓ
{-#... | {
"alphanum_fraction": 0.6225490196,
"avg_line_length": 19.4285714286,
"ext": "agda",
"hexsha": "a4db4ea94ed3ea6061088fbc234e0db3a475d70d",
"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.Polynomials.UnivariateFun.Polyn-nPoly where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Equiv
open import Cubical.Data.Nat renaming (_+_ to _+n_; _·_ to _·n_)
open import Cubical.Data.Sigma
open import Cubical.... | {
"alphanum_fraction": 0.7090611354,
"avg_line_length": 45.8,
"ext": "agda",
"hexsha": "17fb2dcf8aa0252171f353370d779c0722327a37",
"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... |
-- Make the type checker loop. How can we ensure that the record is not
-- recursive?
module RecursiveRecord where
data Nat : Set where
zero : Nat
suc : Nat -> Nat
F : Set -> Set
F _ = R
where
record R : Set where
field x : F Nat
r : F Nat
r = _
| {
"alphanum_fraction": 0.6278195489,
"avg_line_length": 15.6470588235,
"ext": "agda",
"hexsha": "0875849fed22c4063d51eaf4e3aa5f7b8a0d7c80",
"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... |
module examplesPaperJFP.WxGraphicsLib where
open import SizedIO.Base
open import StateSizedIO.GUI.BaseStateDependent
open import Size
open import Data.Bool.Base
open import Data.List.Base
open import Function
open import NativeIO
open import StateSizedIO.GUI.WxBindingsFFI
open import StateSizedIO.GUI.VariableList... | {
"alphanum_fraction": 0.6847731869,
"avg_line_length": 34.9595959596,
"ext": "agda",
"hexsha": "7ba24d93d3576aaffa806dd86cfda4607e0d2461",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:41:00.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-09-01T... |
{-# OPTIONS --safe --cubical #-}
open import Container
module Container.Membership {s p} (𝒞 : Container s p) where
open import Prelude
open import HLevels
infixr 5 _∈_ _∈!_
_∈_ : A → ⟦ 𝒞 ⟧ A → Type _
x ∈ xs = fiber (snd xs) x
_∈!_ : A → ⟦ 𝒞 ⟧ A → Type _
x ∈! xs = isContr (x ∈ xs)
| {
"alphanum_fraction": 0.6048951049,
"avg_line_length": 17.875,
"ext": "agda",
"hexsha": "1cfcb4b0130f4a3317e75793d09c9fc2eab5a0f1",
"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-11T12:30:2... |
{-# OPTIONS --copatterns #-}
-- {-# OPTIONS -v tc.lhs.split:50 -v tc.cover:20 -v tc.cc:15 -v tc.lhs.top:10 #-}
-- {-# OPTIONS -v term:20 #-}
-- {-# OPTIONS --no-positivity-check #-}
-- {-# OPTIONS -v tc.def.fun:50 #-}
-- {-# OPTIONS -v 100 #-}
module CoPatStream where
import Common.Level
open import Common.Prelude h... | {
"alphanum_fraction": 0.5657418577,
"avg_line_length": 26.1789473684,
"ext": "agda",
"hexsha": "e2e8454b862ca51cc029f50891a27fbbf564223e",
"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... |
{-
Definition of and facts about Smith normal form
-}
{-# OPTIONS --safe #-}
module Cubical.Algebra.IntegerMatrix.Smith.NormalForm where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.HLevels
open import Cubical.Data.Nat
hiding (_·_)
renaming (_+_ to _+ℕ_ ; +-assoc to +Assocℕ)
open im... | {
"alphanum_fraction": 0.6525831416,
"avg_line_length": 27.4770114943,
"ext": "agda",
"hexsha": "0a42763c9476983099e6ba2d3186df7737d82079",
"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
--
-- Solver for equations in commutative monoids
--
-- Adapted from Algebra.Solver.Monoid
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
open import Algeb... | {
"alphanum_fraction": 0.541447703,
"avg_line_length": 29.6432160804,
"ext": "agda",
"hexsha": "8268d100f368fdaa6d503ad0c12282850bc61d73",
"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 Data.List hiding ([_]) renaming (_∷_ to _∷ₗ_)
open import Data.Maybe
open import Data.Product
open import AEff
open import EffectAnnotations
open import Renamings
open import Substitutions renaming (⟨_,_⟩ to ⟨_,,_⟩)
open import Types
open import Relation.Binary.PropositionalEquality hiding ([_])
open impo... | {
"alphanum_fraction": 0.2629817497,
"avg_line_length": 37.0600775194,
"ext": "agda",
"hexsha": "e8d34b584b1a6b54e120ac8705b22e900034c4ab",
"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 --sized-types #-}
module FormalLanguage.Proofs {ℓ} where
import Lvl
open import Data
open import Data.Boolean
open import Data.Boolean.Proofs
open import Data.Boolean.Operators
open Data.Boolean.Operators.Programming
open import Data.Boolean.Stmt
open import Data.Boolean.Stmt.Proofs
import ... | {
"alphanum_fraction": 0.5112946887,
"avg_line_length": 50.0607476636,
"ext": "agda",
"hexsha": "eafbec6774d16517c840503cdf31f06be1f8de7a",
"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 comb where
infixr 50 _⟶_
data Ty : Set where
ι : Ty
_⟶_ : Ty -> Ty -> Ty
data Tm : Ty -> Set where
K : {σ τ : Ty} -> Tm (σ ⟶ τ ⟶ σ)
S : {σ τ ρ : Ty} -> Tm ((σ ⟶ τ ⟶ ρ) ⟶ (σ ⟶ τ) ⟶ σ ⟶ ρ)
_$_ : {σ τ : Ty} -> Tm (σ ⟶ τ) -> Tm σ -> Tm τ
data Nf : Ty -> Set where
Kⁿ : {σ τ : Ty} -> Nf (σ ⟶ τ ⟶ σ)
K... | {
"alphanum_fraction": 0.3696927856,
"avg_line_length": 32.5505617978,
"ext": "agda",
"hexsha": "d08b4abb76e3ba1061ba10698fbda63be2a97dbd",
"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... |
{-
Constant structure: _ ↦ A
-}
{-# OPTIONS --cubical --no-import-sorts --safe #-}
module Cubical.Structures.Relational.Constant where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Equiv
open import Cubical.Foundations.HLevels
open import Cubical.Foundations.Structure
open import Cubical.Fo... | {
"alphanum_fraction": 0.7584070796,
"avg_line_length": 27.5609756098,
"ext": "agda",
"hexsha": "e2f5bbe5f61a157b686de8a06bc02036be75e44a",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-11-22T02:02:01.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-11-22T... |
module SystemF.BigStep.Extrinsic.Terms where
open import Prelude
open import SystemF.BigStep.Types
open import Data.List
open import Data.Fin.Substitution
-- erased (type-free) System F syntax
data Term : Set where
unit : Term
ƛ : Term → Term
Λ : Term → Term
_·_ : Term → Term → Term
_[-] : Term → Term
var... | {
"alphanum_fraction": 0.6987951807,
"avg_line_length": 20.75,
"ext": "agda",
"hexsha": "d432946dcc3ffc6a360ab49c9bcba8638e4afd02",
"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": "... |
-- There was a bug with module applications in let.
module Issue34 where
module A (X : Set) where
postulate A : Set
T : (X : Set) -> let open A X in A -> Set
T X _ = X
record B (X : Set) : Set where
open A X
field f : A
postulate
foo : (X : Set)(b : B X) ->
let open A X
open B b in
... | {
"alphanum_fraction": 0.5481927711,
"avg_line_length": 17.4736842105,
"ext": "agda",
"hexsha": "4151289fda91fdd9e2129faee26c2c3a99a36092",
"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... |
-- Andreas, 2019-11-11, issue #4189, reported by nad.
-- Record constructors living in the record module are problematic
-- as the record module is parameterized over the record value,
-- but the constructor not.
-- Thus, a record constructor does not live in the record module
-- any more.
-- {-# OPTIONS -v tc.mod.a... | {
"alphanum_fraction": 0.6775956284,
"avg_line_length": 23.8695652174,
"ext": "agda",
"hexsha": "c114401602fe8261139309d2904819a407731890",
"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 --instance-search-depth=10 #-}
open import Agda.Primitive
it : ∀ {a} {A : Set a} {{x : A}} -> A
it {{x}} = x
infixr 5 _,_
postulate
Pair : ∀ {a} (A : Set a) {b} (B : Set b) -> Set (a ⊔ b)
_,_ : ∀ {a} {A : Set a} {b} {B : Set b} -> A -> B -> Pair A B
data Constraint {a} {A : Set a} (x : A) : Set wh... | {
"alphanum_fraction": 0.5203446625,
"avg_line_length": 22.956043956,
"ext": "agda",
"hexsha": "52d85cc3c75d37e000c452cb324bffa98fc5f3cf",
"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 --safe --experimental-lossy-unification #-}
module Cubical.Algebra.CommRing.RadicalIdeal where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Equiv
open import Cubical.Foundations.Function
open import Cubical.Foundations.Powerset using (⊆-isProp)
open import Cubical.Foundations.HLe... | {
"alphanum_fraction": 0.4514181153,
"avg_line_length": 46.313559322,
"ext": "agda",
"hexsha": "2e4d95f1d41b3e2db52b7d9808710a916de34645",
"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... |
module sum-thms where
open import eq
open import sum
open import list
open import product
open import negation
inj₁-inj : ∀{ℓ ℓ'}{A : Set ℓ}{B : Set ℓ'}{x : A}{x'} → inj₁{ℓ}{ℓ'}{A}{B} x ≡ inj₁ x' → x ≡ x'
inj₁-inj refl = refl
¬∨ : ∀ {A B : Set} → ¬ A ∧ ¬ B → ¬ (A ∨ B)
¬∨ (u , u') (inj₁ x) = u x
¬∨ (u , u') (inj₂ y) ... | {
"alphanum_fraction": 0.4048387097,
"avg_line_length": 22.962962963,
"ext": "agda",
"hexsha": "e2f5fe0ad2ca2d9fbae49e0df99e34db9ce4de4c",
"lang": "Agda",
"max_forks_count": 17,
"max_forks_repo_forks_event_max_datetime": "2021-11-28T20:13:21.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-12-03T... |
{-# OPTIONS --safe --without-K #-}
-- Proof relevant separation algebras
module Relation.Ternary.Separation where
open import Function
open import Level
open import Data.Unit using (tt; ⊤)
open import Data.Product hiding (map)
open import Data.List.Relation.Ternary.Interleaving.Propositional hiding (map)
open import... | {
"alphanum_fraction": 0.484414643,
"avg_line_length": 27.8686868687,
"ext": "agda",
"hexsha": "b14d5a421fd2999b0e720e8636d83ee1ef0e04ce",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2020-05-23T00:34:36.000Z",
"max_forks_repo_forks_event_min_datetime": "2020-01-30T1... |
{-# OPTIONS --without-K #-}
open import HoTT
open import cohomology.Theory
{- Useful lemmas concerning the functorial action of C -}
module cohomology.Functor {i} (CT : CohomologyTheory i) where
open CohomologyTheory CT
CF-inverse : (n : ℤ) {X Y : Ptd i} (f : fst (X ⊙→ Y)) (g : fst (Y ⊙→ X))
→ g ⊙∘ f == ⊙idf _ →... | {
"alphanum_fraction": 0.6111111111,
"avg_line_length": 28.8,
"ext": "agda",
"hexsha": "3e307028982706143be3b1fa614b8dc7b8798267",
"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... |
{-# OPTIONS --copatterns #-}
module LecStr where
open import CS410-Prelude
open import CS410-Nat
open import CS410-Functor
record Stream (X : Set) : Set where
coinductive
field
head : X
tail : Stream X
open Stream
count : Nat -> Stream Nat
head (count n) = n
tail (count n) = count (suc n)
nats : Stream... | {
"alphanum_fraction": 0.6035856574,
"avg_line_length": 23.9047619048,
"ext": "agda",
"hexsha": "ce3a7d1a3832d31d167c2b72cf5584437ecec8ee",
"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 -v tc.data:100 #-}
module Issue830 where
_⟶_ : Set₁ → Set → Set₁
A ⟶ B = A → B
data ⟨Set⟩ : Set where
[_] : Set ⟶ ⟨Set⟩
-- should fail
| {
"alphanum_fraction": 0.5519480519,
"avg_line_length": 14,
"ext": "agda",
"hexsha": "4f902727be61878b78da4b980d7d1bf8e43cc528",
"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.... |
module x where
{-
------------------------------------------------------------------------------
Abstract
Relational program derivation technique :
- stepwise refining a relational spec to a program by algebraic rules.
- program obtained is correct by construction
Dependent type theory rich enough to express correct... | {
"alphanum_fraction": 0.6350999131,
"avg_line_length": 34.2189189189,
"ext": "agda",
"hexsha": "43f2470d19aec492fe80589ed4ceeff8eb0c919d",
"lang": "Agda",
"max_forks_count": 8,
"max_forks_repo_forks_event_max_datetime": "2021-09-21T15:58:10.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-04-13T... |
{-# OPTIONS --without-K --rewriting #-}
open import HoTT
open import homotopy.PtdAdjoint
open import homotopy.SuspAdjointLoop
open import cohomology.WithCoefficients
module cohomology.SuspAdjointLoopIso where
module SuspAdjointLoopIso {i} where
private
hadj : HomAdjoint {i} {i} Σ⊣Ω.SuspFunctor Σ⊣Ω.LoopFunctor... | {
"alphanum_fraction": 0.4751455441,
"avg_line_length": 34.890625,
"ext": "agda",
"hexsha": "e4569cc867ec0a8568e9b7100d61a8dec48d1dc6",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2018-12-26T21:31:57.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-12-26T21:3... |
{-# OPTIONS --cubical --safe #-}
module Cubical.Induction.Everything where
open import Cubical.Induction.WellFounded public
| {
"alphanum_fraction": 0.784,
"avg_line_length": 25,
"ext": "agda",
"hexsha": "b189b82cdb05835b21ee294e05313d14cc110a21",
"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": "cefeb3669f... |
module Examples.PingPong where
open import ActorMonad public
open import Prelude
-- An example including three actors: spawner, pinger, ponger
--
-- Spawner is the actor that starts it all.
-- Spawner spawns both pinger and ponger.
-- Then spawner send the reference of ponger to pinger,
-- and the reference of pinger... | {
"alphanum_fraction": 0.6460363445,
"avg_line_length": 33.3070175439,
"ext": "agda",
"hexsha": "33e79e5ce8140aa8a5ee099f41113dbff941a868",
"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 Issue1252 where
data Bool : Set where
true false : Bool
{-# COMPILE GHC Bool = data Bool (True | False) #-}
foo : Bool → Bool
foo true = false
foo false = true
{-# COMPILE GHC foo as foohs #-}
| {
"alphanum_fraction": 0.652173913,
"avg_line_length": 15.9230769231,
"ext": "agda",
"hexsha": "afa6d3ea38540a47bcddb879ddbd806a34898c85",
"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 --without-K --safe #-}
-- https://www.cs.bham.ac.uk/~mhe/papers/omniscient-journal-revised.pdf
module Constructive.OmniscienceAlt where
open import Level renaming (zero to lzero; suc to lsuc)
import Data.Bool as 𝔹 using (_≤_)
open import Data.Bool as 𝔹 using (Bool; true; false; T; f≤t; b≤b; _∧_; not; _... | {
"alphanum_fraction": 0.5173459077,
"avg_line_length": 29.69,
"ext": "agda",
"hexsha": "c0f917cecdde401ad898fca8076c68c1275de268",
"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 UnSizedIO.Object where
open import Data.Product
record Interface : Set₁ where
field
Method : Set
Result : (m : Method) → Set
open Interface public
-- A simple object just returns for a method the response
-- and the object itself
record Object (i : Interface) : Set where
coinductive
field
... | {
"alphanum_fraction": 0.7088607595,
"avg_line_length": 19.75,
"ext": "agda",
"hexsha": "c5a990787903226158e3bd418c5c6bbf3ed1e544",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:41:00.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-09-01T15:02:37... |
module Equality where
data Nat : Set where
zero : Nat
suc : Nat -> Nat
_+_ : Nat -> Nat -> Nat
zero + m = m
suc n + m = suc (n + m)
data Vec (A : Set) : Nat -> Set where
[] : Vec A zero
_::_ : {n : Nat} -> A -> Vec A n -> Vec A (suc n)
-- so that we know to parse
infixr 40 _::_
-- some hacks 'cuz we do... | {
"alphanum_fraction": 0.5821371611,
"avg_line_length": 16.9459459459,
"ext": "agda",
"hexsha": "5143e33aa559df2d9e2621345362799660ce5de1",
"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 --show-implicit #-}
{-# OPTIONS -v tc.interaction:20 #-}
------------------------------------------------------------------------
-- Library
id : ∀ {X : Set} → X → X
id x = x
infixr 9 _∘_
_∘_ : ∀ {a b c}
{A : Set a} {B : A → Set b} {C : {x : A} → B x → Set c} →
(∀ {x} (y : B x) → C y) → ... | {
"alphanum_fraction": 0.3940563489,
"avg_line_length": 27.5638297872,
"ext": "agda",
"hexsha": "29859de970e59b793aefa26560a53ca0e2056297",
"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 -v impossible:10 #-}
-- Andreas, 2021-05-12, issue #5379
module ImpossibleVerboseReduceM where
-- Note: keep ReduceM as first word after IMPOSSIBLE!
{-# IMPOSSIBLE ReduceM should also print this debug message. #-}
-- Should print the text after IMPOSSIBLE and then raise an internal error.
| {
"alphanum_fraction": 0.75,
"avg_line_length": 33.7777777778,
"ext": "agda",
"hexsha": "ea584aa77f0abdc8d70347a488ecd0e49657e7d3",
"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:... |
-- Andreas, 2014-03-27 fixed issue
{-# OPTIONS --copatterns --sized-types #-}
open import Common.Size
mutual
data D (i : Size) : Set where
inn : R i → D i
record R (i : Size) : Set where
-- Note: not coinductive
field
force : (j : Size< i) → D j
open R
inh : (i : Size) → R i
force (inh i) j =... | {
"alphanum_fraction": 0.5833333333,
"avg_line_length": 16.4,
"ext": "agda",
"hexsha": "29ef33bb54609d5d2c152ffd8a05e95e2940e7d6",
"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-12T11:35:18.... |
module Issue276 where
boo : {S T : Set}(f : S -> T)(x y : S) ->
((P : S -> Set) -> P x -> P y) ->
(P : T -> Set) -> P (f x) -> P (f y)
boo = \ f x y q P -> q (\ s -> P (f s))
record Pack (S : Set) : Set where
constructor pack
field
unpack : S
open Pack
unpack' : {S : Set} -> Pack S -> S
unpack'... | {
"alphanum_fraction": 0.5035294118,
"avg_line_length": 25.7575757576,
"ext": "agda",
"hexsha": "66cd17a5fc82a0008638d43b11b971b7d6c374e9",
"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 Reduction where
open import Prelude
open import Lambda
open import Subst
open import Trans
infix 10 _⟶β_
data _⟶β_ : forall {Γ τ} -> (t u : Term Γ τ) -> Set where
β : forall {Γ σ τ}{t : Term (Γ , σ) τ} Δ {u : Term (Γ ++ Δ) σ} ->
(ƛ t) ↑ Δ • u ⟶β t ↑ Δ / [ Δ ⟵ u ]
wk⟶ : forall {Γ σ τ}{t₁ t₂ : Te... | {
"alphanum_fraction": 0.439862543,
"avg_line_length": 29.1,
"ext": "agda",
"hexsha": "b27b9808881270ac2ee779a2ad39bd52e9f52d56",
"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... |
------------------------------------------------------------------------------
-- Distributive laws on a binary operation: Task B
------------------------------------------------------------------------------
{-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-univers... | {
"alphanum_fraction": 0.3896403827,
"avg_line_length": 34.4431818182,
"ext": "agda",
"hexsha": "8a395bedb22ec5936a6b2ae8466e9755ef747663",
"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... |
-- Two out-of-scope variables are given the same name #3678
open import Agda.Builtin.Sigma
open import Agda.Builtin.Equality
postulate
A : Set
B : A → Set
a : A
Pi : (A → Set) → Set
Pi B = {x : A} → B x
foo : Pi \ y → Σ (B y) \ _ → Pi \ z → Σ (y ≡ a → B z) \ _ → B y → B z → A
foo = {!!} , (\ { refl → {!!} })... | {
"alphanum_fraction": 0.5169082126,
"avg_line_length": 20.7,
"ext": "agda",
"hexsha": "26c996ae310ff1adb4f09d07114acfd31426f570",
"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... |
-- Long version, the final version is Nat.agda
module NatTry where
data ℕ : Set where
zero : ℕ
suc : ℕ → ℕ
one two three four : ℕ
one = suc zero
two = suc one
three = suc two
four = suc three
_+_ : ℕ → ℕ → ℕ
zero + b = b
suc a + b = suc (a + b)
data Bool : Set where
true : Bool
false : Bool
_≟_ : ℕ... | {
"alphanum_fraction": 0.5841910251,
"avg_line_length": 21.1217391304,
"ext": "agda",
"hexsha": "e0a8f0faf74055e8e02b03784c2555bd7bb2f5a8",
"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... |
------------------------------------------------------------------------
-- η-expansion of simply-kinded types in Fω with interval kinds
------------------------------------------------------------------------
{-# OPTIONS --safe --without-K #-}
module FOmegaInt.Kinding.Simple.EtaExpansion where
open import Data.Fin ... | {
"alphanum_fraction": 0.4274466813,
"avg_line_length": 46.8878504673,
"ext": "agda",
"hexsha": "9d3eb44e14c785517910fa529e051b4359252052",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2021-05-14T10:25:05.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-05-13T... |
------------------------------------------------------------------------
-- Some examples related to Nat.Wrapper, defined in Cubical Agda
------------------------------------------------------------------------
{-# OPTIONS --cubical --safe #-}
open import Equality.Path as P
open import Prelude hiding (zero; suc; _+_)... | {
"alphanum_fraction": 0.4810939026,
"avg_line_length": 36.5663265306,
"ext": "agda",
"hexsha": "6b5915d943aa81d45f6ec1d979c9c4cb67d203a0",
"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
--
-- A bunch of properties about natural number operations
------------------------------------------------------------------------
module Data.Nat.Properties.Simple where
open import Data.Nat as Nat
open import Fun... | {
"alphanum_fraction": 0.4182509506,
"avg_line_length": 23.6936936937,
"ext": "agda",
"hexsha": "6c5cb93c5abd78775059fbbb22d5917b66fe6ce7",
"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 #-}
module Definition.Conversion.Lift where
open import Definition.Untyped
open import Definition.Untyped.Properties
open import Definition.Typed
open import Definition.Typed.Weakening
open import Definition.Typed.Properties
open import Definition.Typed.EqRelInstance
open import Definition.Conversi... | {
"alphanum_fraction": 0.5033978933,
"avg_line_length": 43.2794117647,
"ext": "agda",
"hexsha": "bd14ccf63be06e783f93ea8607259d26f4535ef3",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-02-15T19:42:19.000Z",
"max_forks_repo_forks_event_min_datetime": "2022-01-26T... |
module Data.Fin.Extra where
open import Data.Nat
renaming (suc to S; zero to Z; _+_ to _ℕ+_; _*_ to _ℕ*_)
open import Data.Fin
open import Function
open import Relation.Nullary.Negation
open import Relation.Binary.PropositionalEquality
inject-1 : ∀ {n} → (i : Fin (S n)) → toℕ i ≢ n → Fin n
inject-1 {Z} zero ... | {
"alphanum_fraction": 0.6573275862,
"avg_line_length": 29,
"ext": "agda",
"hexsha": "8edc61d10fc62799ffb86b6292fae10c16325484",
"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-30T05:50:50.00... |
module Extensions.List where
open import Prelude
open import Data.List
open import Data.Fin using (fromℕ≤; zero; suc)
open import Data.List.All hiding (lookup; map)
open import Data.Maybe hiding (All; map)
open import Relation.Nullary
open import Relation.Nullary.Decidable using (map′)
open import Relation.Binary.Cor... | {
"alphanum_fraction": 0.4815636736,
"avg_line_length": 36.3850931677,
"ext": "agda",
"hexsha": "c5aaea1a9a142a73766ad5b5d0d72c03564f899b",
"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 2016-01-06
-- {-# OPTIONS -v error.checkclause:60 #-}
data D : Set where
c : D
test : (x y z : D) → Set
test _ c _ with D
test x y z | _ = D
-- Expected output: clause should be printed as is in error message,
-- including underscore patterns.
| {
"alphanum_fraction": 0.6436781609,
"avg_line_length": 18.6428571429,
"ext": "agda",
"hexsha": "78ccc5e5ba0579d78ea40db40f5d8bdc91c6a3f9",
"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 n2o.Network.Socket where
open import proto.IO
open import proto.Base
data SocketType : Set where
NoSocketType : SocketType
Stream : SocketType
Datagram : SocketType
Raw : SocketType
RDM : SocketType
SeqPacket : SocketType
{-# COMPILE GHC SocketType = da... | {
"alphanum_fraction": 0.4164107994,
"avg_line_length": 34.4708029197,
"ext": "agda",
"hexsha": "e714010915b160e5960bcc836c184619784d1770",
"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... |
------------------------------------------------------------------------------
-- Testing the η-expansion
------------------------------------------------------------------------------
{-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-universe-polymorphism #-}
{-# O... | {
"alphanum_fraction": 0.4246885617,
"avg_line_length": 25.2285714286,
"ext": "agda",
"hexsha": "5cfad90c52960ce739dfa3eb2d4f2d108a630ce5",
"lang": "Agda",
"max_forks_count": 4,
"max_forks_repo_forks_event_max_datetime": "2016-08-03T03:54:55.000Z",
"max_forks_repo_forks_event_min_datetime": "2016-05-10T... |
------------------------------------------------------------------------
-- Instantiation of Contractive for streams
------------------------------------------------------------------------
-- Taken from the paper.
-- The definition of Eq has been changed slightly, as compared to the
-- paper. The paper uses
-- Eq ... | {
"alphanum_fraction": 0.4969681657,
"avg_line_length": 32.1788617886,
"ext": "agda",
"hexsha": "0de8ee77de8da7081c6a00af08ca5dd845a79472",
"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 --no-import-sorts --allow-unsolved-metas #-}
module MorePropAlgebra.Consequences where
open import Agda.Primitive renaming (_⊔_ to ℓ-max; lsuc to ℓ-suc; lzero to ℓ-zero)
private
variable
ℓ ℓ' ℓ'' : Level
open import Cubical.Foundations.Everything renaming (_⁻¹ to _⁻¹ᵖ; assoc to ∙-assoc)
... | {
"alphanum_fraction": 0.4985297206,
"avg_line_length": 53.7966101695,
"ext": "agda",
"hexsha": "a443338d7720c32a9452c283931a559cbbe1f8c0",
"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 Definition.Typed.EqualityRelation
module Definition.LogicalRelation.Properties.Reflexivity {{eqrel : EqRelSet}} where
open import Definition.Untyped
open import Definition.Typed
open import Definition.LogicalRelation
open import Tools.Product
open import Tools.Empty
import Tools.P... | {
"alphanum_fraction": 0.4882753404,
"avg_line_length": 42.304,
"ext": "agda",
"hexsha": "a3c08d0470b30a5fe208c9e87611c53eda0e1102",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-02-15T19:42:19.000Z",
"max_forks_repo_forks_event_min_datetime": "2022-01-26T14:55:5... |
{-# OPTIONS --without-K --safe #-}
module Categories.Diagram.Limit.Ran where
open import Level
open import Data.Product using (Σ)
open import Categories.Category
open import Categories.Category.Complete
import Categories.Category.Construction.Cones as ConesCat
open import Categories.Category.Construction.Comma
open ... | {
"alphanum_fraction": 0.4503566334,
"avg_line_length": 43.2716049383,
"ext": "agda",
"hexsha": "799c7a758bc8f841891ca6ee3e74fe022880cf29",
"lang": "Agda",
"max_forks_count": 64,
"max_forks_repo_forks_event_max_datetime": "2022-03-14T02:00:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-06-02... |
------------------------------------------------------------------------------
-- Test case due to Agda new unifier
------------------------------------------------------------------------------
{-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-universe-polymorphism... | {
"alphanum_fraction": 0.4792092706,
"avg_line_length": 27.1666666667,
"ext": "agda",
"hexsha": "ce67277a14f6189d02d7df46c774090c3935f2d9",
"lang": "Agda",
"max_forks_count": 4,
"max_forks_repo_forks_event_max_datetime": "2016-08-03T03:54:55.000Z",
"max_forks_repo_forks_event_min_datetime": "2016-05-10T... |
{-# OPTIONS --without-K --safe #-}
module Categories.Monad.Relative where
open import Level
open import Categories.Category using (Category)
open import Categories.Functor using (Functor; Endofunctor; _∘F_) renaming (id to idF)
import Categories.Morphism.Reasoning as MR
open import Categories.NaturalTransformation re... | {
"alphanum_fraction": 0.5717188135,
"avg_line_length": 38.453125,
"ext": "agda",
"hexsha": "e795584112881390fced385e81f869aea2f6e08f",
"lang": "Agda",
"max_forks_count": 64,
"max_forks_repo_forks_event_max_datetime": "2022-03-14T02:00:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-06-02T16:... |
{-# OPTIONS --safe #-}
open import Definition.Typed.EqualityRelation
module Definition.LogicalRelation.Substitution.Introductions.Sigma {{eqrel : EqRelSet}} where
open EqRelSet {{...}}
open import Definition.Untyped as U hiding (wk)
open import Definition.Untyped.Properties
open import Definition.Typed
open import D... | {
"alphanum_fraction": 0.2869458128,
"avg_line_length": 73.7196261682,
"ext": "agda",
"hexsha": "fb852e6594492522f654757ce237c74aca6f7a52",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-02-15T19:42:19.000Z",
"max_forks_repo_forks_event_min_datetime": "2022-01-26T... |
module ElaborateGive where
open import Agda.Builtin.List
open import Agda.Builtin.Nat
open import Agda.Builtin.Reflection
open import Agda.Builtin.String
open import Agda.Builtin.Unit
five : Nat
five = {!!}
five' : Nat
five' = {!!}
five'' : Nat
five'' = {!!}
macro
addUnknown : Term → TC ⊤
addUnknown goal = uni... | {
"alphanum_fraction": 0.5891647856,
"avg_line_length": 17.3725490196,
"ext": "agda",
"hexsha": "722d4b86cca08db0ab7e34dec6863982733886fb",
"lang": "Agda",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-04-01T18:30:09.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-04-01T... |
module main where
{- unsized Versions omitted in talk -}
import interactiveProgramsAgdaUnsized
import objectsInAgdaUnsized
{- end unsized Versions omitted in talk -}
import interactiveProgramsAgda
import objectsInAgda
{- Probably omit because of time -}
import interfaceExtensionAndDelegation
{- End Probably omit b... | {
"alphanum_fraction": 0.8151260504,
"avg_line_length": 18.0303030303,
"ext": "agda",
"hexsha": "5758da81a50989bcd18048f8ad90c4e1808e530d",
"lang": "Agda",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-03-12T11:41:00.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-09-01T... |
{-
The subset "goodness" of can w.r.t. other ρθ-reductions. For each of the 7 non-merge
ρθ-reductions, there are two corresponding Can subset lemmas.
The lemmas for shared variables and sequential variables are merged together,
using term-raise and term-nothing to capture the relevant esterel Terms
(see Base for their... | {
"alphanum_fraction": 0.5409799236,
"avg_line_length": 48.3346495558,
"ext": "agda",
"hexsha": "fdac92bf3823b2be1d33c17bfa2447cd98e8b642",
"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-15T... |
open import Oscar.Prelude
open import Oscar.Class
open import Oscar.Class.HasEquivalence
open import Oscar.Class.Quadricity
open import Oscar.Class.Injectivity
open import Oscar.Class.Congruity
open import Oscar.Class.Leftstar
open import Oscar.Class.Properthing
open import Oscar.Class.Smap
open import Oscar.Class.Sym... | {
"alphanum_fraction": 0.7787893701,
"avg_line_length": 41.8969072165,
"ext": "agda",
"hexsha": "b822128926ba04e47489945e6aa813f0d966ab46",
"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, 2014-06-27
-- {-# OPTIONS -v tc.lhs:40 #-}
{-# OPTIONS --copatterns #-}
record Coind : Set where
coinductive
field ind : Coind
open Coind
loop : Set -> Coind
ind A (loop B) = ind (loop A)
-- WAS: Internal error.
-- NOW: Proper error.
-- Cannot eliminate type Coind with pattern ind A (did you supply... | {
"alphanum_fraction": 0.6573426573,
"avg_line_length": 21.45,
"ext": "agda",
"hexsha": "37e496d5e9e3f219fd062bb1799b8a860ec1daef",
"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:... |
open import Agda.Builtin.String
open import Agda.Builtin.Equality
test : String → String → String
test "x" b = "left"
test a "x" = "right"
test a b = "nowhere"
_ : test "a" "x" ≡ "right"
_ = refl
| {
"alphanum_fraction": 0.648241206,
"avg_line_length": 16.5833333333,
"ext": "agda",
"hexsha": "8cd8eca645214666cff7e89d6e2677b16930cfad",
"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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.