The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed
Error code: DatasetGenerationError
Exception: TypeError
Message: Couldn't cast array of type
struct<author: string, repo: string, sha: string, save_path: string, path: string>
to
{'hexsha': Value(dtype='string', id=None), 'size': Value(dtype='int64', id=None), 'ext': Value(dtype='string', id=None), 'lang': Value(dtype='string', id=None), 'max_stars_repo_path': Value(dtype='string', id=None), 'max_stars_repo_name': Value(dtype='string', id=None), 'max_stars_repo_head_hexsha': Value(dtype='string', id=None), 'max_stars_repo_licenses': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'max_stars_count': Value(dtype='int64', id=None), 'max_stars_repo_stars_event_min_datetime': Value(dtype='string', id=None), 'max_stars_repo_stars_event_max_datetime': Value(dtype='string', id=None), 'max_issues_repo_path': Value(dtype='string', id=None), 'max_issues_repo_name': Value(dtype='string', id=None), 'max_issues_repo_head_hexsha': Value(dtype='string', id=None), 'max_issues_repo_licenses': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'max_issues_count': Value(dtype='int64', id=None), 'max_issues_repo_issues_event_min_datetime': Value(dtype='string', id=None), 'max_issues_repo_issues_event_max_datetime': Value(dtype='string', id=None), 'max_forks_repo_path': Value(dtype='string', id=None), 'max_forks_repo_name': Value(dtype='string', id=None), 'max_forks_repo_head_hexsha': Value(dtype='string', id=None), 'max_forks_repo_licenses': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'max_forks_count': Value(dtype='int64', id=None), 'max_forks_repo_forks_event_min_datetime': Value(dtype='string', id=None), 'max_forks_repo_forks_event_max_datetime': Value(dtype='string', id=None), 'avg_line_length': Value(dtype='float64', id=None), 'max_line_length': Value(dtype='int64', id=None), 'alphanum_fraction': Value(dtype='float64', id=None), 'num_tokens': Value(dtype='int64', id=None)}
Traceback: Traceback (most recent call last):
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 2011, in _prepare_split_single
writer.write_table(table)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/arrow_writer.py", line 585, in write_table
pa_table = table_cast(pa_table, self._schema)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2302, in table_cast
return cast_table_to_schema(table, schema)
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2261, in cast_table_to_schema
arrays = [cast_array_to_feature(table[name], feature) for name, feature in features.items()]
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2261, in <listcomp>
arrays = [cast_array_to_feature(table[name], feature) for name, feature in features.items()]
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 1802, in wrapper
return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 1802, in <listcomp>
return pa.chunked_array([func(chunk, *args, **kwargs) for chunk in array.chunks])
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/table.py", line 2122, in cast_array_to_feature
raise TypeError(f"Couldn't cast array of type\n{_short_str(array.type)}\nto\n{_short_str(feature)}")
TypeError: Couldn't cast array of type
struct<author: string, repo: string, sha: string, save_path: string, path: string>
to
{'hexsha': Value(dtype='string', id=None), 'size': Value(dtype='int64', id=None), 'ext': Value(dtype='string', id=None), 'lang': Value(dtype='string', id=None), 'max_stars_repo_path': Value(dtype='string', id=None), 'max_stars_repo_name': Value(dtype='string', id=None), 'max_stars_repo_head_hexsha': Value(dtype='string', id=None), 'max_stars_repo_licenses': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'max_stars_count': Value(dtype='int64', id=None), 'max_stars_repo_stars_event_min_datetime': Value(dtype='string', id=None), 'max_stars_repo_stars_event_max_datetime': Value(dtype='string', id=None), 'max_issues_repo_path': Value(dtype='string', id=None), 'max_issues_repo_name': Value(dtype='string', id=None), 'max_issues_repo_head_hexsha': Value(dtype='string', id=None), 'max_issues_repo_licenses': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'max_issues_count': Value(dtype='int64', id=None), 'max_issues_repo_issues_event_min_datetime': Value(dtype='string', id=None), 'max_issues_repo_issues_event_max_datetime': Value(dtype='string', id=None), 'max_forks_repo_path': Value(dtype='string', id=None), 'max_forks_repo_name': Value(dtype='string', id=None), 'max_forks_repo_head_hexsha': Value(dtype='string', id=None), 'max_forks_repo_licenses': Sequence(feature=Value(dtype='string', id=None), length=-1, id=None), 'max_forks_count': Value(dtype='int64', id=None), 'max_forks_repo_forks_event_min_datetime': Value(dtype='string', id=None), 'max_forks_repo_forks_event_max_datetime': Value(dtype='string', id=None), 'avg_line_length': Value(dtype='float64', id=None), 'max_line_length': Value(dtype='int64', id=None), 'alphanum_fraction': Value(dtype='float64', id=None), 'num_tokens': Value(dtype='int64', id=None)}
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1524, in compute_config_parquet_and_info_response
parquet_operations, partial, estimated_dataset_info = stream_convert_to_parquet(
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1099, in stream_convert_to_parquet
builder._prepare_split(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 1882, in _prepare_split
for job_id, done, content in self._prepare_split_single(
File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/builder.py", line 2038, in _prepare_split_single
raise DatasetGenerationError("An error occurred while generating the dataset") from e
datasets.exceptions.DatasetGenerationError: An error occurred while generating the datasetNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
text string | meta dict |
|---|---|
data Unit : Set where
unit : Unit
P : Unit → Set
P unit = Unit
postulate
Q : (u : Unit) → P u → Set
variable
u : Unit
p : P u
postulate
q : P u → Q u p
q' : (u : Unit) (p : P u) → P u → Q u p
q' u p = q {u} {p}
| {
"hexsha": "50b8352825106b5e804d0de7128705ec9cf5af8b",
"size": 227,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/Succeed/Issue3667.agda",
"max_stars_repo_name": "cruhland/agda",
"max_stars_repo_head_hexsha": "7f58030124fa99dfbf8db376659416f3ad8384de",
"max_stars_repo_licenses": [
"MI... |
data ℕ : Set where
zero : ℕ
suc : ℕ → ℕ
{-# BUILTIN NATURAL ℕ #-}
infixl 6 _+_
infix 6 _∸_
_+_ : ℕ → ℕ → ℕ
zero + n = n
suc m + n = suc (m + n)
_∸_ : ℕ → ℕ → ℕ
m ∸ zero = m
zero ∸ suc n = zero
suc m ∸ suc n = m ∸ n
should-be-rejected : ℕ
should-be-rejected = 1 + 0 ∸ 1
| {
"hexsha": "2d3a1a0678390e4f4439c6f2db502b93d1eea59f",
"size": 287,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/Fail/Same-Precedence-Different-Associativity.agda",
"max_stars_repo_name": "cruhland/agda",
"max_stars_repo_head_hexsha": "7f58030124fa99dfbf8db376659416f3ad8384de",
"max_star... |
-- {-# OPTIONS -v term:20 #-}
-- Andreas, 2011-04-19 (Agda list post by Leonard Rodriguez)
module TerminationSubExpression where
infixr 3 _⇨_
data Type : Set where
int : Type
_⇨_ : Type → Type → Type
test : Type → Type
test int = int
test (φ ⇨ int) = test φ
test (φ ⇨ (φ′ ⇨ φ″)) = test (φ′ ⇨ φ″)
-- this should ... | {
"hexsha": "16ac402e49e460fe5493694f922d365c118ec9ae",
"size": 546,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/succeed/TerminationSubExpression.agda",
"max_stars_repo_name": "asr/agda-kanso",
"max_stars_repo_head_hexsha": "aa10ae6a29dc79964fe9dec2de07b9df28b61ed5",
"max_stars_repo_lice... |
{-# OPTIONS --safe --warning=error --without-K #-}
open import Sets.EquivalenceRelations
open import Setoids.Setoids
open import Functions.Definition
open import Groups.Definition
open import Groups.Homomorphisms.Definition
open import Groups.Subgroups.Definition
open import Groups.Subgroups.Normal.Definition
module ... | {
"hexsha": "35ef2809f0226dba2c0f61791f45c712e9ea4aae",
"size": 3599,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Groups/Cosets.agda",
"max_stars_repo_name": "Smaug123/agdaproofs",
"max_stars_repo_head_hexsha": "0f4230011039092f58f673abcad8fb0652e6b562",
"max_stars_repo_licenses": [
"MIT"... |
{-# BUILTIN NATURAL ℕ #-}
module the-naturals where
import Relation.Binary.PropositionalEquality as Eq
open Eq using (_≡_; refl)
open Eq.≡-Reasoning using (begin_; _≡⟨⟩_; _∎)
infixl 6 _+_ _∸_
infixl 7 _*_
-- the naturals
data ℕ : Set where
zero : ℕ
suc : ℕ → ℕ
-- addition
_+_ : ℕ → ℕ → ℕ
zero + n = n
(suc ... | {
"hexsha": "a2ffecbed0a3b576537d1af7c6705da337243dee",
"size": 552,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "src/the-naturals.agda",
"max_stars_repo_name": "seanwestfall/agda_explorations",
"max_stars_repo_head_hexsha": "9fd9fbf9f265bf526a2ec83e9442dedc7106b80c",
"max_stars_repo_licenses"... |
module Category.Functor.Arr where
open import Agda.Primitive using (_⊔_)
open import Category.Functor using (RawFunctor ; module RawFunctor )
open import Category.Applicative using (RawApplicative; module RawApplicative)
open import Function using (_∘_)
open import Category.Functor.Lawful
open import Relation... | {
"hexsha": "7ff0c6ea8523b74f0c456754545987d742c83875",
"size": 1119,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "src/Category/Functor/Arr.agda",
"max_stars_repo_name": "crisoagf/agda-optics",
"max_stars_repo_head_hexsha": "308afeeaa905870dbf1a995fa82e8825dfaf2d74",
"max_stars_repo_licenses":... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- Universe levels
------------------------------------------------------------------------
module Level where
-- Levels.
open import Agda.Primitive public
using (Level; _⊔_)
renaming (lzero to zero; lsuc ... | {
"hexsha": "648bf49c05fcdfb23a6e1ee60f4ad322e7ec677d",
"size": 447,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "agda-stdlib-0.9/src/Level.agda",
"max_stars_repo_name": "qwe2/try-agda",
"max_stars_repo_head_hexsha": "9d4c43b1609d3f085636376fdca73093481ab882",
"max_stars_repo_licenses": [
... |
{-# 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... | {
"hexsha": "135baf1abc80410eaa9fe7bc837f992e105a6d8c",
"size": 10166,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "lib/types/LoopSpace.agda",
"max_stars_repo_name": "danbornside/HoTT-Agda",
"max_stars_repo_head_hexsha": "1695a7f3dc60177457855ae846bbd86fcd96983e",
"max_stars_repo_licenses": [
... |
open import Prelude
module Implicits.Syntax.Term where
open import Implicits.Syntax.Type
infixl 9 _[_] _·_
data Term (ν n : ℕ) : Set where
var : (x : Fin n) → Term ν n
Λ : Term (suc ν) n → Term ν n
λ' : Type ν → Term ν (suc n) → Term ν n
_[_] : Term ν n → Type ν → Term ν n
_·_ : Term ν n → Term ν n ... | {
"hexsha": "73e46aef827433ba0ae3a8552403b7f29d13ac88",
"size": 941,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "src/Implicits/Syntax/Term.agda",
"max_stars_repo_name": "metaborg/ts.agda",
"max_stars_repo_head_hexsha": "7fe638b87de26df47b6437f5ab0a8b955384958d",
"max_stars_repo_licenses": [
... |
{-# OPTIONS --omega-in-omega --no-termination-check --overlapping-instances #-}
module Light.Library where
module Literals where open import Light.Literals public
module Data where
module Empty where open import Light.Library.Data.Empty public
module Either where open import Light.Library.Data.Either pub... | {
"hexsha": "853888e8dbdf22e87333e815fb286ecf8b9434fb",
"size": 2011,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Light/Library.agda",
"max_stars_repo_name": "zamfofex/lightlib",
"max_stars_repo_head_hexsha": "44b1c724f2de95d3a9effe87ca36ef9eca8b4756",
"max_stars_repo_licenses": [
"0BSD"
... |
{-# OPTIONS --safe #-}
module Cubical.Algebra.CommRing.Instances.Polynomials where
open import Cubical.Foundations.Prelude
open import Cubical.Algebra.CommRing
open import Cubical.Algebra.Polynomials
private
variable
ℓ : Level
Poly : (CommRing ℓ) → CommRing ℓ
Poly R = (PolyMod.Poly R) , str
where
o... | {
"hexsha": "a359a454a95bb376620ac769e25c791da32ef222",
"size": 1106,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Cubical/Algebra/CommRing/Instances/Polynomials.agda",
"max_stars_repo_name": "AkermanRydbeck/cubical",
"max_stars_repo_head_hexsha": "038bcaff93d278c627ccdcec34a4f6df2b56ad5a",
"m... |
module empty where
open import level
----------------------------------------------------------------------
-- datatypes
----------------------------------------------------------------------
data ⊥ {ℓ : Level} : Set ℓ where
----------------------------------------------------------------------
-- syntax
----------... | {
"hexsha": "fd2cb85734e977f589c421f3bb3bd74135151bf0",
"size": 593,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "empty.agda",
"max_stars_repo_name": "heades/AUGL",
"max_stars_repo_head_hexsha": "b33c6a59d664aed46cac8ef77d34313e148fecc2",
"max_stars_repo_licenses": [
"MIT"
],
"max_star... |
-- Andreas, 2015-08-11, issue reported by G.Allais
-- The `a` record field of `Pack` is identified as a function
-- (coloured blue, put in a \AgdaFunction in the LaTeX backend)
-- when it should be coloured pink.
-- The problem does not show up when dropping the second record
-- type or removing the module declaration... | {
"hexsha": "ef714adf1ad14bc1901ef64e28438600eec7fd80",
"size": 537,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/interaction/Issue1619.agda",
"max_stars_repo_name": "shlevy/agda",
"max_stars_repo_head_hexsha": "ed8ac6f4062ea8a20fa0f62d5db82d4e68278338",
"max_stars_repo_licenses": [
"... |
{-# OPTIONS --cubical --no-import-sorts --safe #-}
module Cubical.Data.Nat.GCD where
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Function
open import Cubical.Foundations.HLevels
open import Cubical.Foundations.Equiv
open import Cubical.Foundations.Isomorphism
open import Cubical.Induction.... | {
"hexsha": "c5196cf0abe5ed14028d89c715014059ac863565",
"size": 5552,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Cubical/Data/Nat/GCD.agda",
"max_stars_repo_name": "dan-iel-lee/cubical",
"max_stars_repo_head_hexsha": "fd8059ec3eed03f8280b4233753d00ad123ffce8",
"max_stars_repo_licenses": [
... |
{-# OPTIONS --prop --without-K --rewriting #-}
module Calf.Types.Bool where
open import Calf.Prelude
open import Calf.Metalanguage
open import Data.Bool public using (Bool; true; false; if_then_else_)
bool : tp pos
bool = U (meta Bool)
| {
"hexsha": "581307995d4d9804de484679a277db7a1105c718",
"size": 240,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "src/Calf/Types/Bool.agda",
"max_stars_repo_name": "jonsterling/agda-calf",
"max_stars_repo_head_hexsha": "e51606f9ca18d8b4cf9a63c2d6caa2efc5516146",
"max_stars_repo_licenses": [
... |
{-# OPTIONS --safe #-}
module MissingDefinition where
T : Set -> Set
| {
"hexsha": "0ce46b49d9be468775377e9d5a159066a54ecb17",
"size": 70,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/Fail/MissingDefinition.agda",
"max_stars_repo_name": "cruhland/agda",
"max_stars_repo_head_hexsha": "7f58030124fa99dfbf8db376659416f3ad8384de",
"max_stars_repo_licenses": [
... |
{- Cubical Agda with K
This file demonstrates the incompatibility of the --cubical
and --with-K flags, relying on the well-known incosistency of K with
univalence.
The --safe flag can be used to prevent accidentally mixing such
incompatible flags.
-}
{-# OPTIONS --with-K #-}
module Cubical.WithK where
open import... | {
"hexsha": "8adf2905a9a593b453a4ded9500a2babf2a44836",
"size": 1168,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Cubical/WithK.agda",
"max_stars_repo_name": "thomas-lamiaux/cubical",
"max_stars_repo_head_hexsha": "58c0b83bb0fed0dc683f3d29b1709effe51c1689",
"max_stars_repo_licenses": [
"M... |
module WrongNamedArgument2 where
postulate
f : {A : Set₁} → A
test : Set
test = f {B = Set}
-- Unsolved meta.
-- It is not an error since A could be instantiated to a function type
-- accepting hidden argument with name B.
| {
"hexsha": "8ff2c85ca3b4b3a6299af02bf9683c17863d1b53",
"size": 228,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/Fail/WrongNamedArgument2.agda",
"max_stars_repo_name": "shlevy/agda",
"max_stars_repo_head_hexsha": "ed8ac6f4062ea8a20fa0f62d5db82d4e68278338",
"max_stars_repo_licenses": [
... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- Argument information used in the reflection machinery
------------------------------------------------------------------------
{-# OPTIONS --without-K --safe #-}
module Reflection.Argument.Information where
op... | {
"hexsha": "22a0e92ae2a0de22e8cc2d134d9ed93cf56c4127",
"size": 1759,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "agda-stdlib/src/Reflection/Argument/Information.agda",
"max_stars_repo_name": "DreamLinuxer/popl21-artifact",
"max_stars_repo_head_hexsha": "fb380f2e67dcb4a94f353dbaec91624fcb5b8933... |
{-# OPTIONS --rewriting #-}
module FFI.Data.Vector where
open import Agda.Builtin.Equality using (_≡_)
open import Agda.Builtin.Equality.Rewrite using ()
open import Agda.Builtin.Int using (Int; pos; negsuc)
open import Agda.Builtin.Nat using (Nat)
open import Agda.Builtin.Bool using (Bool; false; true)
open import F... | {
"hexsha": "08761edf850acead13e94ec0267acfdd5676b3fa",
"size": 2193,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "prototyping/FFI/Data/Vector.agda",
"max_stars_repo_name": "TheGreatSageEqualToHeaven/luau",
"max_stars_repo_head_hexsha": "72d8d443431875607fd457a13fe36ea62804d327",
"max_stars_re... |
open import Function using (_∘_)
open import Category.Functor
open import Category.Monad
open import Data.Empty using (⊥; ⊥-elim)
open import Data.Fin as Fin using (Fin; zero; suc)
open import Data.Fin.Props as FinProps using ()
open import Data.Maybe as Maybe using (Maybe; maybe; just; nothing)
open import Data.Nat us... | {
"hexsha": "878f11eae9166ecb4d9601d9c99ab02eb58e8674",
"size": 17094,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Unification/Correctness.agda",
"max_stars_repo_name": "wenkokke/FirstOrderUnificationInAgda",
"max_stars_repo_head_hexsha": "5fc229e7eb6925dd3ea8e5d8e8bfbff4500c5614",
"max_stars... |
{-# OPTIONS --safe --experimental-lossy-unification #-}
module Cubical.ZCohomology.RingStructure.GradedCommutativity where
open import Cubical.Foundations.HLevels
open import Cubical.Foundations.Function
open import Cubical.Foundations.Transport
open import Cubical.Foundations.Prelude
open import Cubical.Foundations.I... | {
"hexsha": "11866cc169686b648f7bf25515516114ab57dafa",
"size": 64420,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Cubical/ZCohomology/RingStructure/GradedCommutativity.agda",
"max_stars_repo_name": "thomas-lamiaux/cubical",
"max_stars_repo_head_hexsha": "58c0b83bb0fed0dc683f3d29b1709effe51c168... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- Divisibility
------------------------------------------------------------------------
module Data.Nat.Divisibility where
open import Data.Nat as Nat
open import Data.Nat.DivMod
import Data.Nat.Properties as Nat... | {
"hexsha": "59850d6559e7539eea9852732172275af6c80e10",
"size": 6011,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "agda-stdlib-0.9/src/Data/Nat/Divisibility.agda",
"max_stars_repo_name": "qwe2/try-agda",
"max_stars_repo_head_hexsha": "9d4c43b1609d3f085636376fdca73093481ab882",
"max_stars_repo_... |
------------------------------------------------------------------------
-- An alternative (non-standard) classical definition of weak
-- bisimilarity
------------------------------------------------------------------------
-- This definition is based on the function "wb" in Section 6.5.1 of
-- Pous and Sangiorgi's "E... | {
"hexsha": "e34e6367e2ad4618c78292c955c63e40d0e13bc9",
"size": 951,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "src/Bisimilarity/Weak/Alternative/Classical.agda",
"max_stars_repo_name": "nad/up-to",
"max_stars_repo_head_hexsha": "b936ff85411baf3401ad85ce85d5ff2e9aa0ca14",
"max_stars_repo_lic... |
------------------------------------------------------------------------------
-- Properties related with the group commutator
------------------------------------------------------------------------------
{-# OPTIONS --exact-split #-}
{-# OPTIONS --no-sized-types #-}
{-# OPTIONS --no-universe-p... | {
"hexsha": "4c7c4b22d7e30e41032573c5c7c72768acb8e425",
"size": 1149,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "src/fot/GroupTheory/Commutator/PropertiesATP.agda",
"max_stars_repo_name": "asr/fotc",
"max_stars_repo_head_hexsha": "2fc9f2b81052a2e0822669f02036c5750371b72d",
"max_stars_repo_li... |
-- 2014-01-01 Andreas, test case constructed by Christian Sattler
{-# OPTIONS --allow-unsolved-metas #-}
-- unguarded recursive record
record R : Set where
constructor cons
field
r : R
postulate F : (R → Set) → Set
q : (∀ P → F P) → (∀ P → F P)
q h P = h (λ {(cons x) → {!!}})
-- ISSUE WAS: Bug in implement... | {
"hexsha": "6b75339fd73f513fd0a79812d189c456c14ce299",
"size": 389,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/succeed/Issue376Loop.agda",
"max_stars_repo_name": "larrytheliquid/agda",
"max_stars_repo_head_hexsha": "477c8c37f948e6038b773409358fd8f38395f827",
"max_stars_repo_licenses": ... |
------------------------------------------------------------------------
-- The Agda standard library
--
-- Examples of format strings and printf
------------------------------------------------------------------------
{-# OPTIONS --safe --without-K #-}
module README.Text.Printf where
open import Data.Nat.Base
open ... | {
"hexsha": "638962ee50fc895327ae09ba4bb4d3c183e307b4",
"size": 3058,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "agda-stdlib/README/Text/Printf.agda",
"max_stars_repo_name": "DreamLinuxer/popl21-artifact",
"max_stars_repo_head_hexsha": "fb380f2e67dcb4a94f353dbaec91624fcb5b8933",
"max_stars_r... |
module Inference-of-implicit-function-space where
postulate
_⇔_ : Set → Set → Set
equivalence : {A B : Set} → (A → B) → (B → A) → A ⇔ B
A : Set
P : Set
P = {x : A} → A ⇔ A
works : P ⇔ P
works = equivalence (λ r {x} → r {x = x}) (λ r {x} → r {x = x})
works₂ : P ⇔ P
works₂ = equivalence {A = P... | {
"hexsha": "56d8c1fa55202968349a519d1fa1dd17b65faa92",
"size": 437,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/Succeed/Inference-of-implicit-function-space.agda",
"max_stars_repo_name": "cruhland/agda",
"max_stars_repo_head_hexsha": "7f58030124fa99dfbf8db376659416f3ad8384de",
"max_star... |
{-# OPTIONS --safe #-}
open import Definition.Typed.EqualityRelation
module Definition.LogicalRelation.Substitution.Introductions.Transp {{eqrel : EqRelSet}} where
open EqRelSet {{...}}
open import Definition.Untyped as U hiding (wk)
open import Definition.Untyped.Properties
open import Definition.Typed
open import ... | {
"hexsha": "7e209ba0ca1597da34023e7a9e18d3e819225535",
"size": 4960,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Definition/LogicalRelation/Substitution/Introductions/Transp.agda",
"max_stars_repo_name": "CoqHott/logrel-mltt",
"max_stars_repo_head_hexsha": "e0eeebc4aa5ed791ce3e7c0dc9531bd113df... |
--------------------------------------------------------------------------------
-- This is part of Agda Inference Systems
{-# OPTIONS --sized-types --guardedness #-}
open import Data.Product
open import Data.Vec
open import Codata.Colist as Colist
open import Agda.Builtin.Equality
open import Size
open import Codata... | {
"hexsha": "b6b83f1de4cc9b67683f078537046fbcfc313bf4",
"size": 2361,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "Examples/Colists/member.agda",
"max_stars_repo_name": "LcicC/inference-systems-agda",
"max_stars_repo_head_hexsha": "b9043f99e4bf7211db4066a7a943401d127f0c8f",
"max_stars_repo_lic... |
{-# OPTIONS --cubical-compatible #-}
open import Common.Prelude
open import Common.Equality
open import Common.Product
data _≅_ {A : Set} (a : A) : {B : Set} (b : B) → Set₁ where
refl : a ≅ a
data D : Bool → Set where
x : D true
y : D false
P : Set -> Set₁
P S = Σ S (\s → s ≅ x)
pbool : P (D true)
pbool = _... | {
"hexsha": "c1b00be20b1e195fd107d963b558085d4b05c7fe",
"size": 368,
"ext": "agda",
"lang": "Agda",
"max_stars_repo_path": "test/Fail/Issue1408b.agda",
"max_stars_repo_name": "KDr2/agda",
"max_stars_repo_head_hexsha": "98c9382a59f707c2c97d75919e389fc2a783ac75",
"max_stars_repo_licenses": [
"BSD-2-Cl... |
End of preview.