blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
139
content_id
stringlengths
40
40
detected_licenses
listlengths
0
16
license_type
stringclasses
2 values
repo_name
stringlengths
7
55
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
6 values
visit_date
int64
1,471B
1,694B
revision_date
int64
1,378B
1,694B
committer_date
int64
1,378B
1,694B
github_id
float64
1.33M
604M
star_events_count
int64
0
43.5k
fork_events_count
int64
0
1.5k
gha_license_id
stringclasses
6 values
gha_event_created_at
int64
1,402B
1,695B
gha_created_at
int64
1,359B
1,637B
gha_language
stringclasses
19 values
src_encoding
stringclasses
2 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
3
6.4M
extension
stringclasses
4 values
content
stringlengths
3
6.12M
280cebe01bca639542b13e5ea643ef557cc8b0a7
8cae430f0a71442d02dbb1cbb14073b31048e4b0
/src/group_theory/group_action/prod.lean
d373216994e15fd200af2b0b840903c36a0261c3
[ "Apache-2.0" ]
permissive
leanprover-community/mathlib
56a2cadd17ac88caf4ece0a775932fa26327ba0e
442a83d738cb208d3600056c489be16900ba701d
refs/heads/master
1,693,584,102,358
1,693,471,902,000
1,693,471,902,000
97,922,418
1,595
352
Apache-2.0
1,694,693,445,000
1,500,624,130,000
Lean
UTF-8
Lean
false
false
6,353
lean
/- Copyright (c) 2018 Simon Hudon. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Simon Hudon, Patrick Massot, Eric Wieser -/ import algebra.group.prod import group_theory.group_action.defs /-! # Prod instances for additive and multiplicative actions > THIS FILE IS S...
ffa212fd9ca740898851fcef13f73e1df9e37a24
618003631150032a5676f229d13a079ac875ff77
/src/algebra/pointwise.lean
7204e8aa037b30ecb479e60ce102c53147210fac
[ "Apache-2.0" ]
permissive
awainverse/mathlib
939b68c8486df66cfda64d327ad3d9165248c777
ea76bd8f3ca0a8bf0a166a06a475b10663dec44a
refs/heads/master
1,659,592,962,036
1,590,987,592,000
1,590,987,592,000
268,436,019
1
0
Apache-2.0
1,590,990,500,000
1,590,990,500,000
null
UTF-8
Lean
false
false
12,341
lean
/- Copyright (c) 2019 Johan Commelin. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johan Commelin -/ import algebra.module /-! # Pointwise addition, multiplication, and scalar multiplication of sets. This file defines `pointwise_mul`: for a type `α` with multiplic...
22b5e2feadbfa66bc7386fd590251cc2cc4782bf
55c7fc2bf55d496ace18cd6f3376e12bb14c8cc5
/src/topology/sequences.lean
7ff664d7e5f83eb54e56e1561a4c9b2049b14280
[ "Apache-2.0" ]
permissive
dupuisf/mathlib
62de4ec6544bf3b79086afd27b6529acfaf2c1bb
8582b06b0a5d06c33ee07d0bdf7c646cae22cf36
refs/heads/master
1,669,494,854,016
1,595,692,409,000
1,595,692,409,000
272,046,630
0
0
Apache-2.0
1,592,066,143,000
1,592,066,142,000
null
UTF-8
Lean
false
false
18,955
lean
/- Copyright (c) 2018 Jan-David Salchow. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Jan-David Salchow, Patrick Massot -/ import topology.bases import topology.subset_properties import topology.metric_space.basic /-! # Sequences in topological spaces In this file ...
82d87eca5ab27d27bf8758f751403ac9eddfd860
8cae430f0a71442d02dbb1cbb14073b31048e4b0
/src/ring_theory/quotient_noetherian.lean
2bbef7744a475f9f1715ff367c9fbac44528605c
[ "Apache-2.0" ]
permissive
leanprover-community/mathlib
56a2cadd17ac88caf4ece0a775932fa26327ba0e
442a83d738cb208d3600056c489be16900ba701d
refs/heads/master
1,693,584,102,358
1,693,471,902,000
1,693,471,902,000
97,922,418
1,595
352
Apache-2.0
1,694,693,445,000
1,500,624,130,000
Lean
UTF-8
Lean
false
false
622
lean
/- Copyright (c) 2021 Anne Baanen. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Anne Baanen -/ import ring_theory.noetherian import ring_theory.quotient_nilpotent /-! # Noetherian quotient rings and quotient modules > THIS FILE IS SYNCHRONIZED WITH MATHLIB4. > Any ...
3b4977237c7029ff69bbea7d23a21fe0c7572832
bc3bab676131ea3e06edb46172d92cf30b89311d
/tutorial 4.lean
04c590e345f21f247f90c4911cdb64040896edb9
[]
no_license
enharsha/hello-world
fc13031788876fdab33d28c0834370896e85f356
ef81d688af1aed47ffadf6662b80db5d9eba587d
refs/heads/master
1,597,391,078,827
1,575,926,406,000
1,575,926,406,000
215,125,509
0
0
null
null
null
null
UTF-8
Lean
false
false
868
lean
namespace hidden inductive nat : Type | zero : nat | succ : nat → nat namespace nat def add (m n:nat):nat:= nat.rec_on n m (λ a (add_m_n),succ (add_m_n)) def mult (m n:nat):nat:= nat.rec_on n zero (λ a mult_m_n,add m mult_m_n) def pred (m:nat):nat:= nat.rec_on m zero (λ a pred_m,a) def exp (m n:nat)...
f8fe7e41037df5943b618c3adf9f75d90b2f3a96
aa5a655c05e5359a70646b7154e7cac59f0b4132
/stage0/src/Init/Data/List/Control.lean
915a2c85c4f26d24334622014c832a7f9e3753f7
[ "Apache-2.0" ]
permissive
lambdaxymox/lean4
ae943c960a42247e06eff25c35338268d07454cb
278d47c77270664ef29715faab467feac8a0f446
refs/heads/master
1,677,891,867,340
1,612,500,005,000
1,612,500,005,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
5,506
lean
/- Copyright (c) 2019 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura -/ prelude import Init.Control.Basic import Init.Data.List.Basic namespace List universes u v w u₁ u₂ /- Remark: we can define `mapM`, `mapM₂` and `forM` usin...
373d1110c4a2adca7197d4245f42fddff885bae5
ce6917c5bacabee346655160b74a307b4a5ab620
/src/ch2/ex0404.lean
8c0213a286bc415856a7fbf83e665ce27e06e96c
[]
no_license
Ailrun/Theorem_Proving_in_Lean
ae6a23f3c54d62d401314d6a771e8ff8b4132db2
2eb1b5caf93c6a5a555c79e9097cf2ba5a66cf68
refs/heads/master
1,609,838,270,467
1,586,846,743,000
1,586,846,743,000
240,967,761
1
0
null
null
null
null
UTF-8
Lean
false
false
144
lean
def double : ℕ → ℕ := λ x, x + x def square : ℕ → ℕ := λ x, x * x def do_twice : (ℕ → ℕ) → ℕ → ℕ := λ f x, f (f x)
869346f3d48eb729851ea195ab6b4a449376361a
cf39355caa609c0f33405126beee2739aa3cb77e
/tests/lean/run/ack.lean
851f45af2c8f44101e8fd7de81fd5eef47e01f83
[ "Apache-2.0" ]
permissive
leanprover-community/lean
12b87f69d92e614daea8bcc9d4de9a9ace089d0e
cce7990ea86a78bdb383e38ed7f9b5ba93c60ce0
refs/heads/master
1,687,508,156,644
1,684,951,104,000
1,684,951,104,000
169,960,991
457
107
Apache-2.0
1,686,744,372,000
1,549,790,268,000
C++
UTF-8
Lean
false
false
650
lean
open nat definition iter (f : nat → nat) (n : nat) : nat := nat.rec_on n (f 1) (λ (n₁ : nat) (r : nat), f r) definition ack (m : nat) : nat → nat := nat.rec_on m nat.succ (λ (m₁ : nat) (r : nat → nat), iter r) theorem ack_0_n (n : nat) : ack 0 n = n + 1 := rfl theorem ack_m_0 (m : nat) : ack (m + 1) 0 = ack...
61d162c75a78c115991b7b57b8babe3320c15044
35677d2df3f081738fa6b08138e03ee36bc33cad
/src/topology/algebra/infinite_sum.lean
391e3c6217f20d03442defc0654da512656198ee
[ "Apache-2.0" ]
permissive
gebner/mathlib
eab0150cc4f79ec45d2016a8c21750244a2e7ff0
cc6a6edc397c55118df62831e23bfbd6e6c6b4ab
refs/heads/master
1,625,574,853,976
1,586,712,827,000
1,586,712,827,000
99,101,412
1
0
Apache-2.0
1,586,716,389,000
1,501,667,958,000
Lean
UTF-8
Lean
false
false
31,639
lean
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl Infinite sum over a topological monoid This sum is known as unconditionally convergent, as it sums to the same value under all possible permutations. For Euclidean spa...
586ee3bf47c58c5900a66f1f77e5fcbdd997c07f
82b86ba2ae0d5aed0f01f49c46db5afec0eb2bd7
/src/Lean/Elab/Match.lean
0ee1960efdb3a34e2f0551d235a1c1b9aa76ebe9
[ "Apache-2.0" ]
permissive
banksonian/lean4
3a2e6b0f1eb63aa56ff95b8d07b2f851072d54dc
78da6b3aa2840693eea354a41e89fc5b212a5011
refs/heads/master
1,673,703,624,165
1,605,123,551,000
1,605,123,551,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
38,485
lean
/- Copyright (c) 2020 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.Meta.Match.MatchPatternAttr import Lean.Meta.Match.Match import Lean.Elab.SyntheticMVars import Lean.Elab.App namespace Lean.Elab.Term open Met...
09a1a2e998015a70f9b591c65153c0258449f6d8
74addaa0e41490cbaf2abd313a764c96df57b05d
/Mathlib/category_theory/concrete_category/reflects_isomorphisms_auto.lean
f6446c5580f9d87f6ad3ca22cb223b9568d1f311
[]
no_license
AurelienSaue/Mathlib4_auto
f538cfd0980f65a6361eadea39e6fc639e9dae14
590df64109b08190abe22358fabc3eae000943f2
refs/heads/master
1,683,906,849,776
1,622,564,669,000
1,622,564,669,000
371,723,747
0
0
null
null
null
null
UTF-8
Lean
false
false
1,783
lean
/- Copyright (c) 2020 Scott Morrison. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Scott Morrison -/ import Mathlib.PrePort import Mathlib.Lean3Lib.init.default import Mathlib.category_theory.concrete_category.basic import Mathlib.category_theory.reflects_isomorphism...
afd7385cc26ad3de880b925214d2f7f7a1166b7c
57c233acf9386e610d99ed20ef139c5f97504ba3
/src/measure_theory/measure/complex_lebesgue.lean
65712d77cba8b46fb7ef47900094b775ff3088de
[ "Apache-2.0" ]
permissive
robertylewis/mathlib
3d16e3e6daf5ddde182473e03a1b601d2810952c
1d13f5b932f5e40a8308e3840f96fc882fae01f0
refs/heads/master
1,651,379,945,369
1,644,276,960,000
1,644,276,960,000
98,875,504
0
0
Apache-2.0
1,644,253,514,000
1,501,495,700,000
Lean
UTF-8
Lean
false
false
1,589
lean
/- Copyright (c) 2021 Yury Kudryashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudryashov -/ import measure_theory.measure.lebesgue /-! # Lebesgue measure on `ℂ` In this file we define Lebesgue measure on `ℂ`. Since `ℂ` is defined as a `structure` as the ...
b92da5415624fedeab360f77bb065f5823a900bb
4727251e0cd73359b15b664c3170e5d754078599
/src/group_theory/perm/fin.lean
8873c22971ebbe9de9a3c8dd4d0233a3c6ba56ee
[ "Apache-2.0" ]
permissive
Vierkantor/mathlib
0ea59ac32a3a43c93c44d70f441c4ee810ccceca
83bc3b9ce9b13910b57bda6b56222495ebd31c2f
refs/heads/master
1,658,323,012,449
1,652,256,003,000
1,652,256,003,000
209,296,341
0
1
Apache-2.0
1,568,807,655,000
1,568,807,655,000
null
UTF-8
Lean
false
false
10,757
lean
/- Copyright (c) 2021 Eric Wieser. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Eric Wieser -/ import group_theory.perm.cycle_type import group_theory.perm.option import logic.equiv.fin import logic.equiv.fintype /-! # Permutations of `fin n` -/ open equiv /-- Perm...
11d1736209314b65986dc627f5111713321e3f98
fe84e287c662151bb313504482b218a503b972f3
/src/order/lattice_extra.lean
fb0395db69e34ab762570803231dfd60eaedeb48
[]
no_license
NeilStrickland/lean_lib
91e163f514b829c42fe75636407138b5c75cba83
6a9563de93748ace509d9db4302db6cd77d8f92c
refs/heads/master
1,653,408,198,261
1,652,996,419,000
1,652,996,419,000
181,006,067
4
1
null
null
null
null
UTF-8
Lean
false
false
1,687
lean
/- Copyright (c) 2019 Neil Strickland. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Neil Strickland Some additional typeclass instances: * A set with decidable linear order and top and bottom elements is a bounded distributive lattice * If we take a set with dec...
87ca4688450c66fdb482f103a01ec5c5c3103493
74addaa0e41490cbaf2abd313a764c96df57b05d
/Mathlib/data/zsqrtd/gaussian_int.lean
587fa293cdff2cbe2cc2dbf515949b9fb1442191
[]
no_license
AurelienSaue/Mathlib4_auto
f538cfd0980f65a6361eadea39e6fc639e9dae14
590df64109b08190abe22358fabc3eae000943f2
refs/heads/master
1,683,906,849,776
1,622,564,669,000
1,622,564,669,000
371,723,747
0
0
null
null
null
null
UTF-8
Lean
false
false
8,537
lean
/- Copyright (c) 2019 Chris Hughes. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Chris Hughes -/ import Mathlib.PrePort import Mathlib.Lean3Lib.init.default import Mathlib.data.zsqrtd.basic import Mathlib.data.complex.basic import Mathlib.ring_theory.principal_ideal_d...
c331a21d7a7550a4250b194d8d971dbc7519fd94
626e312b5c1cb2d88fca108f5933076012633192
/src/analysis/convex/caratheodory.lean
01081ba52cb2a4a4835f8fb34833c05e540ad865
[ "Apache-2.0" ]
permissive
Bioye97/mathlib
9db2f9ee54418d29dd06996279ba9dc874fd6beb
782a20a27ee83b523f801ff34efb1a9557085019
refs/heads/master
1,690,305,956,488
1,631,067,774,000
1,631,067,774,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
8,556
lean
/- Copyright (c) 2020 Scott Morrison. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johan Commelin, Scott Morrison -/ import analysis.convex.basic import linear_algebra.affine_space.independent /-! # Carathéodory's convexity theorem Convex hull can be regarded as a ...
92a4612e8bdf66260f05d0bbccc89416792e4fad
d406927ab5617694ec9ea7001f101b7c9e3d9702
/src/model_theory/elementary_maps.lean
d62105d2b95d043480b87a8489f1bc23281044e1
[ "Apache-2.0" ]
permissive
alreadydone/mathlib
dc0be621c6c8208c581f5170a8216c5ba6721927
c982179ec21091d3e102d8a5d9f5fe06c8fafb73
refs/heads/master
1,685,523,275,196
1,670,184,141,000
1,670,184,141,000
287,574,545
0
0
Apache-2.0
1,670,290,714,000
1,597,421,623,000
Lean
UTF-8
Lean
false
false
14,903
lean
/- Copyright (c) 2022 Aaron Anderson. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Aaron Anderson -/ import data.fintype.basic import model_theory.substructures /-! # Elementary Maps Between First-Order Structures ## Main Definitions * A `first_order.language.eleme...
46ee526761207039e5fb6f8126a5546b44ad4b5a
d406927ab5617694ec9ea7001f101b7c9e3d9702
/src/data/mv_polynomial/comm_ring.lean
ab4afa025b69429fb7aad6b86fa9f1a2ae4229f0
[ "Apache-2.0" ]
permissive
alreadydone/mathlib
dc0be621c6c8208c581f5170a8216c5ba6721927
c982179ec21091d3e102d8a5d9f5fe06c8fafb73
refs/heads/master
1,685,523,275,196
1,670,184,141,000
1,670,184,141,000
287,574,545
0
0
Apache-2.0
1,670,290,714,000
1,597,421,623,000
Lean
UTF-8
Lean
false
false
5,516
lean
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Johan Commelin, Mario Carneiro -/ import data.mv_polynomial.variables /-! # Multivariate polynomials over a ring Many results about polynomials hold when the coeffic...
9fc2ac8a0b1cdae3378082d03453c5604c10ef23
bbecf0f1968d1fba4124103e4f6b55251d08e9c4
/src/linear_algebra/matrix/fpow.lean
b1561b96ecc25077a94582636e5b8752e87e8b93
[ "Apache-2.0" ]
permissive
waynemunro/mathlib
e3fd4ff49f4cb43d4a8ded59d17be407bc5ee552
065a70810b5480d584033f7bbf8e0409480c2118
refs/heads/master
1,693,417,182,397
1,634,644,781,000
1,634,644,781,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
12,342
lean
/- Copyright (c) 2021 Yakov Pechersky. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yakov Pechersky -/ import linear_algebra.matrix.nonsingular_inverse /-! # Integer powers of square matrices In this file, we define integer power of matrices, relying on the nonsing...
51d1bce74997edcd7ad7658311a0b929b7435320
2eab05920d6eeb06665e1a6df77b3157354316ad
/src/category_theory/adjunction/basic.lean
19c4c3807e750ded928b4ccd6bf0d24ac7de1719
[ "Apache-2.0" ]
permissive
ayush1801/mathlib
78949b9f789f488148142221606bf15c02b960d2
ce164e28f262acbb3de6281b3b03660a9f744e3c
refs/heads/master
1,692,886,907,941
1,635,270,866,000
1,635,270,866,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
18,132
lean
/- Copyright (c) 2019 Reid Barton. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Reid Barton, Johan Commelin, Bhavik Mehta -/ import category_theory.equivalence namespace category_theory open category -- declare the `v`'s first; see `category_theory.category` for an...
6fede13255374ee687e6fd699f8a09239b569513
ee8cdbabf07f77e7be63a449b8483ce308d37218
/lean/src/test/numbertheory-notequiv2i2jasqbsqdiv8.lean
bd3d7664d2188da4fbc1767983e14479007f0e52
[ "Apache-2.0", "MIT" ]
permissive
zeta1999/miniF2F
6d66c75d1c18152e224d07d5eed57624f731d4b7
c1ba9629559c5273c92ec226894baa0c1ce27861
refs/heads/main
1,681,897,460,642
1,620,646,361,000
1,620,646,361,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
277
lean
/- Copyright (c) 2021 OpenAI. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Kunhao Zheng -/ import data.real.basic example ( a b : ℤ) : ¬ ( (∃ i j, a = 2*i ∧ b=2*j) ↔ (∃ k, a^2 + b^2 = 8*k) ) := begin sorry end
6eda035ab9edae3e73757c255619b34757d2e920
572fb32b6f5b7c2bf26921ffa2abea054cce881a
/src/week_1/Part_B_sets.lean
2ad8289568ba96c28ad4c6c043de627665b11d1b
[ "Apache-2.0" ]
permissive
kgeorgiy/lean-formalising-mathematics
2deb30756d5a54bee1cfa64873e86f641c59c7dc
73429a8ded68f641c896b6ba9342450d4d3ae50f
refs/heads/master
1,683,029,640,682
1,621,403,041,000
1,621,403,041,000
367,790,347
0
0
null
null
null
null
UTF-8
Lean
false
false
4,249
lean
import tactic -- Let `Ω` be a "big underlying set" and let `X` and `Y` and `Z` be subsets variables (Ω : Type) (X Y Z : set Ω) (a b c x y z : Ω) namespace xena /-! # subsets Let's think about `X ⊆ Y`. Typeset `⊆` with `\sub` or `\ss` -/ -- `X ⊆ Y` is the same as `∀ a, a ∈ X → a ∈ Y` , by definition. lemma subse...
3b7a53be8fbfd7f388188701588858be85d25750
206422fb9edabf63def0ed2aa3f489150fb09ccb
/src/analysis/calculus/fderiv.lean
e4d2a835ab6de1bd49ff393501d33b4025035bee
[ "Apache-2.0" ]
permissive
hamdysalah1/mathlib
b915f86b2503feeae268de369f1b16932321f097
95454452f6b3569bf967d35aab8d852b1ddf8017
refs/heads/master
1,677,154,116,545
1,611,797,994,000
1,611,797,994,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
121,660
lean
/- Copyright (c) 2019 Jeremy Avigad. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Jeremy Avigad, Sébastien Gouëzel, Yury Kudryashov -/ import analysis.calculus.tangent_cone import analysis.normed_space.units import analysis.asymptotic_equivalent import analysis.analy...
b35a6dc1f1b9490df4c4493d04210f0555eab526
206422fb9edabf63def0ed2aa3f489150fb09ccb
/src/ring_theory/polynomial/cyclotomic.lean
eede9008dc62178f5123b97e4008ba9f4c0593f9
[ "Apache-2.0" ]
permissive
hamdysalah1/mathlib
b915f86b2503feeae268de369f1b16932321f097
95454452f6b3569bf967d35aab8d852b1ddf8017
refs/heads/master
1,677,154,116,545
1,611,797,994,000
1,611,797,994,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
30,772
lean
/- Copyright (c) 2020 Riccardo Brasca. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Riccardo Brasca -/ import field_theory.splitting_field import ring_theory.roots_of_unity import algebra.polynomial.big_operators import number_theory.arithmetic_function import data.p...
72220c2ec1c92d93d9424ad2c24fe4baa3fd0142
4b846d8dabdc64e7ea03552bad8f7fa74763fc67
/library/init/meta/name.lean
e55e4e0090d3449747b13841fdb17ea5c03332ef
[ "Apache-2.0" ]
permissive
pacchiano/lean
9324b33f3ac3b5c5647285160f9f6ea8d0d767dc
fdadada3a970377a6df8afcd629a6f2eab6e84e8
refs/heads/master
1,611,357,380,399
1,489,870,101,000
1,489,870,101,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
3,381
lean
/- Copyright (c) 2016 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude import init.data.ordering init.coe /- Reflect a C++ name object. The VM replaces it with the C++ implementation. -/ inductive name | anonymous : n...
46ecc651b223f805f7c954dcbeb2837aeafd30e9
74addaa0e41490cbaf2abd313a764c96df57b05d
/Mathlib/data/multiset/antidiagonal.lean
b6559484d44a88b23ea456ea0a666b940ff04f78
[]
no_license
AurelienSaue/Mathlib4_auto
f538cfd0980f65a6361eadea39e6fc639e9dae14
590df64109b08190abe22358fabc3eae000943f2
refs/heads/master
1,683,906,849,776
1,622,564,669,000
1,622,564,669,000
371,723,747
0
0
null
null
null
null
UTF-8
Lean
false
false
2,416
lean
/- Copyright (c) 2017 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Mario Carneiro -/ import Mathlib.PrePort import Mathlib.Lean3Lib.init.default import Mathlib.data.multiset.powerset import Mathlib.PostPort universes u_1 u_2 namespace Mathlib /-! #...
49885f9ea1fdbaadac195c2471dab5735ecce3e7
7282d49021d38dacd06c4ce45a48d09627687fe0
/tests/lean/simp23.lean
39a6bb18558add64dbf1f6ebf348c1a94cafbf05
[ "Apache-2.0" ]
permissive
steveluc/lean
5a0b4431acefaf77f15b25bbb49294c2449923ad
92ba4e8b2d040a799eda7deb8d2a7cdd3e69c496
refs/heads/master
1,611,332,256,930
1,391,013,244,000
1,391,013,244,000
16,361,079
1
0
null
null
null
null
UTF-8
Lean
false
false
1,112
lean
import cast variable vec : Nat → Type variable concat {n m : Nat} (v : vec n) (w : vec m) : vec (n + m) infixl 65 ; : concat axiom concat_assoc {n1 n2 n3 : Nat} (v1 : vec n1) (v2 : vec n2) (v3 : vec n3) : (v1 ; v2) ; v3 = cast (congr2 vec (symm (Nat::add_assoc n1 n2 n3))) ...
2306ae83d0af02251fd60bb4df18a75dfd883702
fa02ed5a3c9c0adee3c26887a16855e7841c668b
/src/measure_theory/hausdorff_measure.lean
bc02198e0843c6a237030237aab882f3eb6ff069
[ "Apache-2.0" ]
permissive
jjgarzella/mathlib
96a345378c4e0bf26cf604aed84f90329e4896a2
395d8716c3ad03747059d482090e2bb97db612c8
refs/heads/master
1,686,480,124,379
1,625,163,323,000
1,625,163,323,000
281,190,421
2
0
Apache-2.0
1,595,268,170,000
1,595,268,169,000
null
UTF-8
Lean
false
false
25,595
lean
/- Copyright (c) 2021 Yury Kudryashov. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Yury Kudryashov -/ import topology.metric_space.metric_separated import measure_theory.borel_space import analysis.special_functions.pow /-! # Hausdorff measure and metric (outer) me...
191b7524472eefc2b9957e4d267f36fa8cbddbc2
d406927ab5617694ec9ea7001f101b7c9e3d9702
/src/linear_algebra/clifford_algebra/star.lean
9c340fcbcb04f27cba593af0e99d686c7f616833
[ "Apache-2.0" ]
permissive
alreadydone/mathlib
dc0be621c6c8208c581f5170a8216c5ba6721927
c982179ec21091d3e102d8a5d9f5fe06c8fafb73
refs/heads/master
1,685,523,275,196
1,670,184,141,000
1,670,184,141,000
287,574,545
0
0
Apache-2.0
1,670,290,714,000
1,597,421,623,000
Lean
UTF-8
Lean
false
false
1,977
lean
/- Copyright (c) 2022 Eric Wieser. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Eric Wieser -/ import linear_algebra.clifford_algebra.conjugation /-! # Star structure on `clifford_algebra` This file defines the "clifford conjugation", equal to `reverse (involute x)...
35d321109dba0234bc2a5172505db2907f23d1b1
cf39355caa609c0f33405126beee2739aa3cb77e
/tests/lean/run/have3.lean
ae1a6f209dd542e4b1b598a7678df888d6127a45
[ "Apache-2.0" ]
permissive
leanprover-community/lean
12b87f69d92e614daea8bcc9d4de9a9ace089d0e
cce7990ea86a78bdb383e38ed7f9b5ba93c60ce0
refs/heads/master
1,687,508,156,644
1,684,951,104,000
1,684,951,104,000
169,960,991
457
107
Apache-2.0
1,686,744,372,000
1,549,790,268,000
C++
UTF-8
Lean
false
false
231
lean
prelude definition Prop : Type.{1} := Type.{0} constants a b c : Prop axiom Ha : a axiom Hb : b axiom Hc : c #check have H1 : a, from Ha, have H2 : a, from H1, have H3 : a, from H2, have H4 : a, from H3, H4
5198ea5393a29073db9f2334414dd2be7983e948
74addaa0e41490cbaf2abd313a764c96df57b05d
/Mathlib/data/real/cardinality.lean
ca19a4cd7f123555357da13f5d5d58150e4c0ecb
[]
no_license
AurelienSaue/Mathlib4_auto
f538cfd0980f65a6361eadea39e6fc639e9dae14
590df64109b08190abe22358fabc3eae000943f2
refs/heads/master
1,683,906,849,776
1,622,564,669,000
1,622,564,669,000
371,723,747
0
0
null
null
null
null
UTF-8
Lean
false
false
6,478
lean
/- Copyright (c) 2019 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Floris van Doorn -/ import Mathlib.PrePort import Mathlib.Lean3Lib.init.default import Mathlib.set_theory.cardinal_ordinal import Mathlib.analysis.specific_limits import Mathlib.data...
c5781ff9cfd4e821a1e24ed77c40c7b8ed321ab9
6432ea7a083ff6ba21ea17af9ee47b9c371760f7
/src/Lean/Compiler/LCNF/Util.lean
a1c7f82c00c23d5e08856a700c741e8239ebc27d
[ "Apache-2.0", "LLVM-exception", "NCSA", "LGPL-3.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.0-or-later", "Spencer-94", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-pcre", "ISC", "LGPL-2.1-only", "LicenseRef-scancode-other-permissive", "SunPro", "CMU-Mach"...
permissive
leanprover/lean4
4bdf9790294964627eb9be79f5e8f6157780b4cc
f1f9dc0f2f531af3312398999d8b8303fa5f096b
refs/heads/master
1,693,360,665,786
1,693,350,868,000
1,693,350,868,000
129,571,436
2,827
311
Apache-2.0
1,694,716,156,000
1,523,760,560,000
Lean
UTF-8
Lean
false
false
2,856
lean
/- Copyright (c) 2022 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.CoreM import Lean.MonadEnv import Lean.Util.Recognizers namespace Lean.Compiler.LCNF /-- Return `true` if `mdata` should be preserved. Right no...
35710f85dbbcfa99c7991eeafb41d7a6e728c906
5412d79aa1dc0b521605c38bef9f0d4557b5a29d
/stage0/src/Lean/Util/MonadCache.lean
3a19810a269fe6d2bf63c517d39b60729f7874b3
[ "Apache-2.0" ]
permissive
smunix/lean4
a450ec0927dc1c74816a1bf2818bf8600c9fc9bf
3407202436c141e3243eafbecb4b8720599b970a
refs/heads/master
1,676,334,875,188
1,610,128,510,000
1,610,128,521,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
4,653
lean
/- Copyright (c) 2019 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Std.Data.HashMap namespace Lean /-- Interface for caching results. -/ class MonadCache (α β : Type) (m : Type → Type) where findCached? : α → m (...
8bd174c7af6b9dc185b49c373feb1cd6c6881704
5d166a16ae129621cb54ca9dde86c275d7d2b483
/tests/lean/interactive/goal_info_rw.lean
0c0de6b09d92f7af7594ae37c2e163738bb69c34
[ "Apache-2.0" ]
permissive
jcarlson23/lean
b00098763291397e0ac76b37a2dd96bc013bd247
8de88701247f54d325edd46c0eed57aeacb64baf
refs/heads/master
1,611,571,813,719
1,497,020,963,000
1,497,021,515,000
93,882,536
1
0
null
1,497,029,896,000
1,497,029,896,000
null
UTF-8
Lean
false
false
249
lean
example (p q r : Prop) (h₁ : p = q) (h₂ : q = r) : p = r := by rw [h₁, --^ "command": "info" -h₂, --^ "command": "info" -h₁ --^ "command": "info" --^ "command": "info" ] --^ "command": "info"
5df923048b5e08b91fc0cd46a8e8114aa35f95f8
74addaa0e41490cbaf2abd313a764c96df57b05d
/Mathlib/data/set/intervals/infinite.lean
ab693de07cb173b1d14af4a5fe8596bca18452a1
[]
no_license
AurelienSaue/Mathlib4_auto
f538cfd0980f65a6361eadea39e6fc639e9dae14
590df64109b08190abe22358fabc3eae000943f2
refs/heads/master
1,683,906,849,776
1,622,564,669,000
1,622,564,669,000
371,723,747
0
0
null
null
null
null
UTF-8
Lean
false
false
1,675
lean
/- Copyright (c) 2020 Reid Barton. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Reid Barton -/ import Mathlib.PrePort import Mathlib.Lean3Lib.init.default import Mathlib.data.set.finite import Mathlib.PostPort universes u_1 namespace Mathlib /-! # Infinitude of i...
1d299cdbb085ddf845b9d405e26a639084f14013
6432ea7a083ff6ba21ea17af9ee47b9c371760f7
/src/Lean/Util/ForEachExprWhere.lean
18a9e33d09fc35644a1ee16c20e05880019be16b
[ "Apache-2.0", "LLVM-exception", "NCSA", "LGPL-3.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.0-or-later", "Spencer-94", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-pcre", "ISC", "LGPL-2.1-only", "LicenseRef-scancode-other-permissive", "SunPro", "CMU-Mach"...
permissive
leanprover/lean4
4bdf9790294964627eb9be79f5e8f6157780b4cc
f1f9dc0f2f531af3312398999d8b8303fa5f096b
refs/heads/master
1,693,360,665,786
1,693,350,868,000
1,693,350,868,000
129,571,436
2,827
311
Apache-2.0
1,694,716,156,000
1,523,760,560,000
Lean
UTF-8
Lean
false
false
2,844
lean
/- Copyright (c) 2022 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.Expr import Lean.Util.MonadCache namespace Lean /-! `forEachWhere p f e` is similar to `forEach f e`, but only applies `f` to subterms that sat...
31395efc873f375b6487c6bea9daf984205c026f
a0e23cfdd129a671bf3154ee1a8a3a72bf4c7940
/stage0/src/Lean/Meta/Instances.lean
065460fa710d3dd5d8eff11c31c49d6c43a08924
[ "Apache-2.0" ]
permissive
WojciechKarpiel/lean4
7f89706b8e3c1f942b83a2c91a3a00b05da0e65b
f6e1314fa08293dea66a329e05b6c196a0189163
refs/heads/master
1,686,633,402,214
1,625,821,189,000
1,625,821,258,000
384,640,886
0
0
Apache-2.0
1,625,903,617,000
1,625,903,026,000
null
UTF-8
Lean
false
false
4,941
lean
/- Copyright (c) 2019 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.ScopedEnvExtension import Lean.Meta.DiscrTree namespace Lean.Meta structure InstanceEntry where keys : Array DiscrTree.Key val ...
8a82d384739e167001b1d18de5af73669f93cfde
7541ac8517945d0f903ff5397e13e2ccd7c10573
/src/category_theory/equivalence/characterisation.lean
e0111a32ef1a41038c64a7cbf65cd42a54da49c5
[]
no_license
ramonfmir/lean-category-theory
29b6bad9f62c2cdf7517a3135e5a12b340b4ed90
be516bcbc2dc21b99df2bcb8dde0d1e8de79c9ad
refs/heads/master
1,586,110,684,637
1,541,927,184,000
1,541,927,184,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
2,451
lean
-- Copyright (c) 2017 Scott Morrison. All rights reserved. -- Released under Apache 2.0 license as described in the file LICENSE. -- Authors: Tim Baumann, Stephen Morgan, Scott Morrison import category_theory.equivalence import category_theory.natural_isomorphism import tidy.rewrite_search import tidy.command.rfl_lem...
f82e0950e3b6dab299a7f464ea30c2308e23a2ca
aa3f8992ef7806974bc1ffd468baa0c79f4d6643
/tests/lean/empty_thm.lean
07e0611a1a909e7f07344ede19da245bee46692e
[ "Apache-2.0" ]
permissive
codyroux/lean
7f8dff750722c5382bdd0a9a9275dc4bb2c58dd3
0cca265db19f7296531e339192e9b9bae4a31f8b
refs/heads/master
1,610,909,964,159
1,407,084,399,000
1,416,857,075,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
164
lean
import logic tools.tactic open tactic definition simple := apply trivial tactic_hint simple theorem foo : true theorem foo2 (a : Prop) : a : theorem foo3 : true
24373328b1e90d20923d9da9c6bdb6e9b1920739
4727251e0cd73359b15b664c3170e5d754078599
/src/field_theory/polynomial_galois_group.lean
dd73712774cc3960e5fc35c036c940787949c933
[ "Apache-2.0" ]
permissive
Vierkantor/mathlib
0ea59ac32a3a43c93c44d70f441c4ee810ccceca
83bc3b9ce9b13910b57bda6b56222495ebd31c2f
refs/heads/master
1,658,323,012,449
1,652,256,003,000
1,652,256,003,000
209,296,341
0
1
Apache-2.0
1,568,807,655,000
1,568,807,655,000
null
UTF-8
Lean
false
false
21,826
lean
/- Copyright (c) 2020 Thomas Browning, Patrick Lutz. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Thomas Browning, Patrick Lutz -/ import group_theory.perm.cycle_type import analysis.complex.polynomial import field_theory.galois /-! # Galois Groups of Polynomials ...
da428a79ae890b2f37ed5d82e370c7289848c281
957a80ea22c5abb4f4670b250d55534d9db99108
/library/init/meta/smt/smt_tactic.lean
fa0b5ebf3d8082d2383debd857806a332e51abef
[ "Apache-2.0" ]
permissive
GaloisInc/lean
aa1e64d604051e602fcf4610061314b9a37ab8cd
f1ec117a24459b59c6ff9e56a1d09d9e9e60a6c0
refs/heads/master
1,592,202,909,807
1,504,624,387,000
1,504,624,387,000
75,319,626
2
1
Apache-2.0
1,539,290,164,000
1,480,616,104,000
C++
UTF-8
Lean
false
false
15,317
lean
/- Copyright (c) 2016 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude import init.category import init.meta.simp_tactic import init.meta.smt.congruence_closure import init.meta.smt.ematch universe u run_cmd mk_simp_a...
c242ba923c86a9e0c28387b752d83b4bf4d99d08
1437b3495ef9020d5413178aa33c0a625f15f15f
/ring_theory/unique_factorization_domain.lean
dacb4784ea3fd97d92fc1f3ebb9d0f6dd0c2018b
[ "Apache-2.0" ]
permissive
jean002/mathlib
c66bbb2d9fdc9c03ae07f869acac7ddbfce67a30
dc6c38a765799c99c4d9c8d5207d9e6c9e0e2cfd
refs/heads/master
1,587,027,806,375
1,547,306,358,000
1,547,306,358,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
18,851
lean
/- Copyright (c) 2018 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Jens Wagemaker Theory of unique factorization domains. @TODO: setup the complete lattice structure on `factor_set`. -/ import ring_theory.associated algebra.gcd_domai...
407b77b8da2f7b4a766e294ba3abbc05e3c751f1
74addaa0e41490cbaf2abd313a764c96df57b05d
/Mathlib/Lean3Lib/init/meta/occurrences.lean
c0b7d33486e33ded43bb8b2786d687e86e6d1485
[]
no_license
AurelienSaue/Mathlib4_auto
f538cfd0980f65a6361eadea39e6fc639e9dae14
590df64109b08190abe22358fabc3eae000943f2
refs/heads/master
1,683,906,849,776
1,622,564,669,000
1,622,564,669,000
371,723,747
0
0
null
null
null
null
UTF-8
Lean
false
false
1,318
lean
/- Copyright (c) 2016 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Mathlib.PrePort import Mathlib.Lean3Lib.init.logic import Mathlib.Lean3Lib.init.data.repr import Mathlib.Lean3Lib.init.meta.format import Mathlib.Lea...
2e837afd9a1b92d2690c1dea11ad2ab26b41a434
624f6f2ae8b3b1adc5f8f67a365c51d5126be45a
/tests/lean/run/bigop.lean
49e1515dc8a76d36f444e3c2aa6f786ab2e31266
[ "Apache-2.0" ]
permissive
mhuisi/lean4
28d35a4febc2e251c7f05492e13f3b05d6f9b7af
dda44bc47f3e5d024508060dac2bcb59fd12e4c0
refs/heads/master
1,621,225,489,283
1,585,142,689,000
1,585,142,689,000
250,590,438
0
2
Apache-2.0
1,602,443,220,000
1,585,327,814,000
C
UTF-8
Lean
false
false
4,179
lean
def Seq (α : Type) := List α def BigBody (β α) := α × (β → β → β) × Bool × β def applyBig {α β : Type} (body : BigBody β α) (x : β) : β := let (_, op, b, v) := body; if b then op v x else x def reducebig {α β : Type} (idx : β) (r : Seq α) (body : α → BigBody β α) : β := r.foldr (applyBig ∘ body) idx def bigop := @...
7b2d13515ecdab4784eaed0773b8a5a53b7a7f44
8cae430f0a71442d02dbb1cbb14073b31048e4b0
/src/linear_algebra/clifford_algebra/fold.lean
353aed894e0f35ca266902d150874677a5957bb7
[ "Apache-2.0" ]
permissive
leanprover-community/mathlib
56a2cadd17ac88caf4ece0a775932fa26327ba0e
442a83d738cb208d3600056c489be16900ba701d
refs/heads/master
1,693,584,102,358
1,693,471,902,000
1,693,471,902,000
97,922,418
1,595
352
Apache-2.0
1,694,693,445,000
1,500,624,130,000
Lean
UTF-8
Lean
false
false
9,268
lean
/- Copyright (c) 2022 Eric Wieser. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Eric Wieser -/ import linear_algebra.clifford_algebra.conjugation /-! # Recursive computation rules for the Clifford algebra > THIS FILE IS SYNCHRONIZED WITH MATHLIB4. > Any changes to ...
ee8eada229036fcc532a3681cd586f5de29aefe2
aa2345b30d710f7e75f13157a35845ee6d48c017
/linear_algebra/basis.lean
f668b2b1c05bcd161cd207a44267e0c46dabfe7d
[ "Apache-2.0" ]
permissive
CohenCyril/mathlib
5241b20a3fd0ac0133e48e618a5fb7761ca7dcbe
a12d5a192f5923016752f638d19fc1a51610f163
refs/heads/master
1,586,031,957,957
1,541,432,824,000
1,541,432,824,000
156,246,337
0
0
Apache-2.0
1,541,434,514,000
1,541,434,513,000
null
UTF-8
Lean
false
false
23,630
lean
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro Linear independence and basis sets in a module or vector space. This file is inspired by Isabelle/HOL's linear algebra, and hence indirectly by HOL Lig...
4696cdc3bb6b89a6aa36b398fa89d10cf273055e
a7eef317ddec01b9fc6cfbb876fe7ac00f205ac7
/src/topology/continuous_on.lean
25ae8cdd6c613b648cad759294cf1c592593f1b5
[ "Apache-2.0" ]
permissive
kmill/mathlib
ea5a007b67ae4e9e18dd50d31d8aa60f650425ee
1a419a9fea7b959317eddd556e1bb9639f4dcc05
refs/heads/master
1,668,578,197,719
1,593,629,163,000
1,593,629,163,000
276,482,939
0
0
null
1,593,637,960,000
1,593,637,959,000
null
UTF-8
Lean
false
false
24,949
lean
/- Copyright (c) 2019 Reid Barton. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Sébastien Gouëzel -/ import topology.constructions /-! # Neighborhoods and continuity relative to a subset This file defines relative versions `nhds_within` of `nhds` `contin...
44c1a20632925ee496480a67d187a38a6bcf9089
57aec6ee746bc7e3a3dd5e767e53bd95beb82f6d
/tests/lean/run/match1.lean
e84d9a3c145d7af264af5f25cf1d725eb8ce670a
[ "Apache-2.0" ]
permissive
collares/lean4
861a9269c4592bce49b71059e232ff0bfe4594cc
52a4f535d853a2c7c7eea5fee8a4fa04c682c1ee
refs/heads/master
1,691,419,031,324
1,618,678,138,000
1,618,678,138,000
358,989,750
0
0
Apache-2.0
1,618,696,333,000
1,618,696,333,000
null
UTF-8
Lean
false
false
3,443
lean
def f (xs : List Nat) : List Bool := xs.map fun | 0 => true | _ => false #eval f [1, 2, 0, 2] theorem ex1 : f [1, 0, 2] = [false, true, false] := rfl #check f set_option pp.raw true set_option pp.raw.maxDepth 10 set_option trace.Elab.step true in def g (xs : List Nat) : List Bool := xs.map <| by { intro |...
0f70646cc2b480992a0004fa637ae18e830b3eb5
74addaa0e41490cbaf2abd313a764c96df57b05d
/Mathlib/algebra/group/with_one_auto.lean
c4a152be9ca7d46d6123a1384961a226c1882d17
[]
no_license
AurelienSaue/Mathlib4_auto
f538cfd0980f65a6361eadea39e6fc639e9dae14
590df64109b08190abe22358fabc3eae000943f2
refs/heads/master
1,683,906,849,776
1,622,564,669,000
1,622,564,669,000
371,723,747
0
0
null
null
null
null
UTF-8
Lean
false
false
7,572
lean
/- Copyright (c) 2018 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro, Johan Commelin -/ import Mathlib.PrePort import Mathlib.Lean3Lib.init.default import Mathlib.algebra.ring.basic import Mathlib.data.equiv.basic import Mathlib.PostPort ...
97146e2e5a27833ea0525a599ef3584e798046d4
43390109ab88557e6090f3245c47479c123ee500
/src/M1F/problem_bank/0107/0107Q.lean
700cb3b63ab79ad6ea59c0531201bc9a104a7005
[ "Apache-2.0" ]
permissive
Ja1941/xena-UROP-2018
41f0956519f94d56b8bf6834a8d39473f4923200
b111fb87f343cf79eca3b886f99ee15c1dd9884b
refs/heads/master
1,662,355,955,139
1,590,577,325,000
1,590,577,325,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
1,223
lean
-- real numbers import data.real.basic -- useful lemmas import xenalib.M1F.help_for_0107 noncomputable theory def A : set ℝ := { x | x^2 < 3} def B : set ℝ := { x | x^2 < 3 ∧ ∃ y : ℤ, x = y} def C : set ℝ := { x | x^3 < 3} definition real_half := (1 / 2 : ℝ) -- useful lemmas definition B_is_minus_one_zero_one : ∀ ...
b70f9c03fc1986ca7dd3f75bc5d55570f02f36cb
90edd5cdcf93124fe15627f7304069fdce3442dd
/src/Lean/Aesop/RuleTac.lean
7c998df30f97ddb10df8616164c4c8a6196c7fd1
[ "Apache-2.0" ]
permissive
JLimperg/lean4-aesop
8a9d9cd3ee484a8e67fda2dd9822d76708098712
5c4b9a3e05c32f69a4357c3047c274f4b94f9c71
refs/heads/master
1,689,415,944,104
1,627,383,284,000
1,627,383,284,000
377,536,770
0
0
null
null
null
null
UTF-8
Lean
false
false
2,574
lean
/- Copyright (c) 2021 Jannis Limperg. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Jannis Limperg -/ import Lean.Elab open Lean.Elab.Tactic open Lean.Meta namespace Lean.Aesop -- A `RuleTacDescr` is a 'recipe' for constructing the tactic used by a rule. -- When w...
d9564f6320ca15383433c010af33271a711cbb09
5ae26df177f810c5006841e9c73dc56e01b978d7
/src/data/list/sort.lean
8c5c7cac0449207922fb0c48dd4ed51f82a446e7
[ "Apache-2.0" ]
permissive
ChrisHughes24/mathlib
98322577c460bc6b1fe5c21f42ce33ad1c3e5558
a2a867e827c2a6702beb9efc2b9282bd801d5f9a
refs/heads/master
1,583,848,251,477
1,565,164,247,000
1,565,164,247,000
129,409,993
0
1
Apache-2.0
1,565,164,817,000
1,523,628,059,000
Lean
UTF-8
Lean
false
false
10,340
lean
/- Copyright (c) 2016 Jeremy Avigad. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Jeremy Avigad Insertion sort and merge sort. -/ import data.list.perm open list.perm namespace list section sorted universe variable uu variables {α : Type uu} {r : α → α → Prop} /--...
5fef8671d83599db4a41612c55943fe98324e6df
9028d228ac200bbefe3a711342514dd4e4458bff
/src/algebra/char_p.lean
702b690c99d7389c547ef688398f4285f6acab30
[ "Apache-2.0" ]
permissive
mcncm/mathlib
8d25099344d9d2bee62822cb9ed43aa3e09fa05e
fde3d78cadeec5ef827b16ae55664ef115e66f57
refs/heads/master
1,672,743,316,277
1,602,618,514,000
1,602,618,514,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
14,447
lean
/- Copyright (c) 2018 Kenny Lau. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Kenny Lau, Joey van Langen, Casper Putz -/ import data.fintype.basic import data.nat.choose import data.int.modeq import algebra.module.basic import algebra.iterate_hom import group_theory....
3d6e8d0ac8cdf61f039e2f8d893f88716cd1c5bb
cc060cf567f81c404a13ee79bf21f2e720fa6db0
/lean/20170218-monoidal-category-of-types.lean
ffdc01b846667fff0bfea258d4f1902d47665610
[ "Apache-2.0" ]
permissive
semorrison/proof
cf0a8c6957153bdb206fd5d5a762a75958a82bca
5ee398aa239a379a431190edbb6022b1a0aa2c70
refs/heads/master
1,610,414,502,842
1,518,696,851,000
1,518,696,851,000
78,375,937
2
1
null
null
null
null
UTF-8
Lean
false
false
15,872
lean
open tactic open smt_tactic def pointwise_attribute : user_attribute := { name := `pointwise, descr := "A lemma that proves things are equal using the fact they are pointwise equal." } run_command attribute.register `pointwise_attribute /- Try to apply one of the given lemas, it succeeds if one of them succeeds....
bbe2b3b5460059ba64ae690b348c0df95433ee90
74addaa0e41490cbaf2abd313a764c96df57b05d
/Mathlib/Lean3Lib/init/meta/json_auto.lean
f3313b94cb64dc63b9b6380143315667c3d615b0
[]
no_license
AurelienSaue/Mathlib4_auto
f538cfd0980f65a6361eadea39e6fc639e9dae14
590df64109b08190abe22358fabc3eae000943f2
refs/heads/master
1,683,906,849,776
1,622,564,669,000
1,622,564,669,000
371,723,747
0
0
null
null
null
null
UTF-8
Lean
false
false
280
lean
/- Copyright (c) E.W.Ayers 2020. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: E.W.Ayers -/ import Mathlib.PrePort import Mathlib.Lean3Lib.init.data.default import Mathlib.Lean3Lib.init.meta.float namespace Mathlib end Mathlib
bca009c5e889df231a102012c2e3d1de6d20ad25
54d7e71c3616d331b2ec3845d31deb08f3ff1dea
/tests/lean/run/u_eq_max_u_v.lean
7cb20d7105c2823d3a677ba3f02eabffe3483e1a
[ "Apache-2.0" ]
permissive
pachugupta/lean
6f3305c4292288311cc4ab4550060b17d49ffb1d
0d02136a09ac4cf27b5c88361750e38e1f485a1a
refs/heads/master
1,611,110,653,606
1,493,130,117,000
1,493,167,649,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
3,039
lean
universe variables u v u1 u2 v1 v2 set_option pp.universes true open smt_tactic meta def blast : tactic unit := using_smt $ intros >> add_lemmas_from_facts >> repeat_at_most 3 ematch notation `♮` := by blast structure semigroup_morphism { α β : Type u } ( s : semigroup α ) ( t: semigroup β ) := (map: α → β) (mul...
c4a86a336edbf9284de64b929ac831b7ba6baf69
b7f22e51856f4989b970961f794f1c435f9b8f78
/tests/lean/run/blast_cc_heq9.lean
bf3818592b1fbb7b606c55569bbcf90a813ea511
[ "Apache-2.0" ]
permissive
soonhokong/lean
cb8aa01055ffe2af0fb99a16b4cda8463b882cd1
38607e3eb57f57f77c0ac114ad169e9e4262e24f
refs/heads/master
1,611,187,284,081
1,450,766,737,000
1,476,122,547,000
11,513,992
2
0
null
1,401,763,102,000
1,374,182,235,000
C++
UTF-8
Lean
false
false
486
lean
open subtype set_option blast.strategy "cc" example (f g : Π {A : Type₁}, A → A → A) (h : nat → nat) (a b : nat) : h = f a → h b = f a b := by blast example (f g : Π {A : Type₁}, A → A → A) (h : nat → nat) (a b : nat) : h = f a → h b = f a b := by blast example (f g : Π {A : Type₁} (a b : A), {x : A ...
6ea519230817e40affb528f44cc13b295e46ad3a
6432ea7a083ff6ba21ea17af9ee47b9c371760f7
/src/Lean/Meta/Tactic/Rename.lean
ce92193ab341698778622833250158c93813908e
[ "Apache-2.0", "LLVM-exception", "NCSA", "LGPL-3.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.0-or-later", "Spencer-94", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-pcre", "ISC", "LGPL-2.1-only", "LicenseRef-scancode-other-permissive", "SunPro", "CMU-Mach"...
permissive
leanprover/lean4
4bdf9790294964627eb9be79f5e8f6157780b4cc
f1f9dc0f2f531af3312398999d8b8303fa5f096b
refs/heads/master
1,693,360,665,786
1,693,350,868,000
1,693,350,868,000
129,571,436
2,827
311
Apache-2.0
1,694,716,156,000
1,523,760,560,000
Lean
UTF-8
Lean
false
false
868
lean
/- Copyright (c) 2022 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.Meta.Tactic.Util namespace Lean.Meta /-- Rename the user-face naming for the free variable `fvarId` at `mvarId`. -/ def _root_.Lean.MVarId.ren...
cc367e9ef66ee12bdec4b00c67ab63c0717926fb
31f556cdeb9239ffc2fad8f905e33987ff4feab9
/stage0/src/Lean/Elab/Tactic/Injection.lean
e27ac153640c0d983586e307c6b2e1c288dbab70
[ "Apache-2.0", "LLVM-exception", "NCSA", "LGPL-3.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.0-or-later", "Spencer-94", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-pcre", "ISC", "LGPL-2.1-only", "LicenseRef-scancode-other-permissive", "SunPro", "CMU-Mach"...
permissive
tobiasgrosser/lean4
ce0fd9cca0feba1100656679bf41f0bffdbabb71
ebdbdc10436a4d9d6b66acf78aae7a23f5bd073f
refs/heads/master
1,673,103,412,948
1,664,930,501,000
1,664,930,501,000
186,870,185
0
0
Apache-2.0
1,665,129,237,000
1,557,939,901,000
Lean
UTF-8
Lean
false
false
1,591
lean
/- Copyright (c) 2020 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.Meta.Tactic.Injection import Lean.Elab.Tactic.ElabTerm namespace Lean.Elab.Tactic -- optional (" with " >> many1 ident') private def getInjecti...
7f41809465bf6e2950a94dad4ffd51e7274a17f5
8cae430f0a71442d02dbb1cbb14073b31048e4b0
/src/tactic/derive_inhabited.lean
3ebcb756f891962544b7c77d2198d7a1d49451cc
[ "Apache-2.0" ]
permissive
leanprover-community/mathlib
56a2cadd17ac88caf4ece0a775932fa26327ba0e
442a83d738cb208d3600056c489be16900ba701d
refs/heads/master
1,693,584,102,358
1,693,471,902,000
1,693,471,902,000
97,922,418
1,595
352
Apache-2.0
1,694,693,445,000
1,500,624,130,000
Lean
UTF-8
Lean
false
false
2,365
lean
/- Copyright (c) 2020 Gabriel Ebner. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Gabriel Ebner -/ import logic.basic import data.rbmap.basic /-! # Derive handler for `inhabited` instances This file introduces a derive handler to automatically generate `inhabited` ...
134be8008bccbde3d10570ce49ebca301e51bf4b
d7189ea2ef694124821b033e533f18905b5e87ef
/galois/fin/default.lean
e4c86974d43fb38a70a3cf606459d6e849eb6222
[ "Apache-2.0" ]
permissive
digama0/lean-protocol-support
eaa7e6f8b8e0d5bbfff1f7f52bfb79a3b11b0f59
cabfa3abedbdd6fdca6e2da6fbbf91a13ed48dda
refs/heads/master
1,625,421,450,627
1,506,035,462,000
1,506,035,462,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
2,608
lean
import galois.tactic galois.nat.simplify_le def nat_to_fin_option (k n : ℕ) : option (fin k) := if H : n < k then some ⟨ _, H ⟩ else none namespace fin lemma fin_0_empty (x : fin 0) : false := begin induction x, apply nat.lt_irrefl, apply lt_of_le_of_lt, tactic.swap, assumption, apply nat.zero_le, end lemm...
c1af855efc036668d01ad49b3bd369d2a491016a
94e33a31faa76775069b071adea97e86e218a8ee
/src/data/list/of_fn.lean
5197f8bb9c1b6d8d8d74a4f56d4f6687e5fc746d
[ "Apache-2.0" ]
permissive
urkud/mathlib
eab80095e1b9f1513bfb7f25b4fa82fa4fd02989
6379d39e6b5b279df9715f8011369a301b634e41
refs/heads/master
1,658,425,342,662
1,658,078,703,000
1,658,078,703,000
186,910,338
0
0
Apache-2.0
1,568,512,083,000
1,557,958,709,000
Lean
UTF-8
Lean
false
false
6,109
lean
/- Copyright (c) 2018 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro -/ import data.fin.basic import data.list.basic import data.list.join /-! # Lists from functions Theorems and lemmas for dealing with `list.of_fn`, which converts a fu...
4b38978e04631a147a62e21e9bd35c64d5d9ec23
94e33a31faa76775069b071adea97e86e218a8ee
/src/order/lattice_intervals.lean
47257e7c0cc237825aab36ae6e4bd990feec51cb
[ "Apache-2.0" ]
permissive
urkud/mathlib
eab80095e1b9f1513bfb7f25b4fa82fa4fd02989
6379d39e6b5b279df9715f8011369a301b634e41
refs/heads/master
1,658,425,342,662
1,658,078,703,000
1,658,078,703,000
186,910,338
0
0
Apache-2.0
1,568,512,083,000
1,557,958,709,000
Lean
UTF-8
Lean
false
false
4,942
lean
/- Copyright (c) 2020 Aaron Anderson. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Aaron Anderson -/ import order.bounds /-! # Intervals in Lattices In this file, we provide instances of lattice structures on intervals within lattices. Some of them depend on the o...
251d453f386d22696e87db898c8849b9ff7381b7
1fd908b06e3f9c1252cb2285ada1102623a67f72
/types/pullback.lean
faa2a8bcce00aa19fa553b5674a6e084bd07b604
[ "Apache-2.0" ]
permissive
avigad/hott3
609a002849182721e7c7ae536d9f1e2956d6d4d3
f64750cd2de7a81e87d4828246d1369d59f16f43
refs/heads/master
1,629,027,243,322
1,510,946,717,000
1,510,946,717,000
103,570,461
0
0
null
1,505,415,620,000
1,505,415,620,000
null
UTF-8
Lean
false
false
6,304
lean
/- Copyright (c) 2015 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Floris van Doorn Theorems about pullbacks -/ import cubical.square universes u v w hott_theory namespace hott open hott.eq hott.equiv hott.is_equiv function hott.prod unit is_tru...
0525110b2fcfa23ed1919e4cc6e5b484b1bf6b44
31f556cdeb9239ffc2fad8f905e33987ff4feab9
/src/Lean/Meta/Tactic/Simp/SimpTheorems.lean
dcc99c5cdf914528c58955c14a89974dec2470db
[ "Apache-2.0", "LLVM-exception", "NCSA", "LGPL-3.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.0-or-later", "Spencer-94", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-pcre", "ISC", "LGPL-2.1-only", "LicenseRef-scancode-other-permissive", "SunPro", "CMU-Mach"...
permissive
tobiasgrosser/lean4
ce0fd9cca0feba1100656679bf41f0bffdbabb71
ebdbdc10436a4d9d6b66acf78aae7a23f5bd073f
refs/heads/master
1,673,103,412,948
1,664,930,501,000
1,664,930,501,000
186,870,185
0
0
Apache-2.0
1,665,129,237,000
1,557,939,901,000
Lean
UTF-8
Lean
false
false
19,971
lean
/- Copyright (c) 2020 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ import Lean.ScopedEnvExtension import Lean.Util.Recognizers import Lean.Meta.DiscrTree import Lean.Meta.AppBuilder import Lean.Meta.Eqns import Lean.Meta.Ta...
8f9162c0c0ba3d26ed82c232ab7efb1864794d28
69d4931b605e11ca61881fc4f66db50a0a875e39
/src/field_theory/adjoin.lean
d009d4d6c66493e9dd5aa95ded60b9e863989dbf
[ "Apache-2.0" ]
permissive
abentkamp/mathlib
d9a75d291ec09f4637b0f30cc3880ffb07549ee5
5360e476391508e092b5a1e5210bd0ed22dc0755
refs/heads/master
1,682,382,954,948
1,622,106,077,000
1,622,106,077,000
149,285,665
0
0
null
null
null
null
UTF-8
Lean
false
false
33,065
lean
/- Copyright (c) 2020 Thomas Browning, Patrick Lutz. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Thomas Browning, Patrick Lutz -/ import field_theory.intermediate_field import field_theory.splitting_field import field_theory.separable import ring_theory.adjoin_root...
60caa8c0a3bd57d3a70c1225cf83899b6a8fc67e
e00ea76a720126cf9f6d732ad6216b5b824d20a7
/src/category_theory/limits/shapes/zero.lean
b8d27264c9ef9d28ad25673858ecec819a140105
[ "Apache-2.0" ]
permissive
vaibhavkarve/mathlib
a574aaf68c0a431a47fa82ce0637f0f769826bfe
17f8340912468f49bdc30acdb9a9fa02eeb0473a
refs/heads/master
1,621,263,802,637
1,585,399,588,000
1,585,399,588,000
250,833,447
0
0
Apache-2.0
1,585,410,341,000
1,585,410,341,000
null
UTF-8
Lean
false
false
8,473
lean
/- Copyright (c) 2019 Scott Morrison. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Scott Morrison -/ import category_theory.limits.shapes.terminal import category_theory.limits.shapes.binary_products import category_theory.epi_mono import category_theory.punit import...
491415f2dbd147aead136a24fce3da32eb8b7034
9028d228ac200bbefe3a711342514dd4e4458bff
/src/tactic/derive_fintype.lean
be34264d71c4b288b305db61523776bc48635e94
[ "Apache-2.0" ]
permissive
mcncm/mathlib
8d25099344d9d2bee62822cb9ed43aa3e09fa05e
fde3d78cadeec5ef827b16ae55664ef115e66f57
refs/heads/master
1,672,743,316,277
1,602,618,514,000
1,602,618,514,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
15,349
lean
/- Copyright (c) 2020 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro -/ import logic.basic import data.fintype.basic /-! # Derive handler for `fintype` instances This file introduces a derive handler to automatically generate `fintype` ...
8e8d9fdb61bec8a22a69e94f3ee7addffd44847c
b7f22e51856f4989b970961f794f1c435f9b8f78
/tests/lean/run/360_1.lean
b03955981673fa193fe5b877e8744d7adfc6993b
[ "Apache-2.0" ]
permissive
soonhokong/lean
cb8aa01055ffe2af0fb99a16b4cda8463b882cd1
38607e3eb57f57f77c0ac114ad169e9e4262e24f
refs/heads/master
1,611,187,284,081
1,450,766,737,000
1,476,122,547,000
11,513,992
2
0
null
1,401,763,102,000
1,374,182,235,000
C++
UTF-8
Lean
false
false
171
lean
structure is_tr [class] (A : Type) : Type := (x : A) theorem foo (B : Type) [H : is_tr B] : B := sorry theorem bar (A : Type) (H : is_tr A) : A := begin apply foo end
373695a5faab8975ab8f137cb3cbbaa5c0ffbbdc
e030b0259b777fedcdf73dd966f3f1556d392178
/library/init/meta/default.lean
3e64ddbfc4858ce9668fb5d4ce048f23d862efaf
[ "Apache-2.0" ]
permissive
fgdorais/lean
17b46a095b70b21fa0790ce74876658dc5faca06
c3b7c54d7cca7aaa25328f0a5660b6b75fe26055
refs/heads/master
1,611,523,590,686
1,484,412,902,000
1,484,412,902,000
38,489,734
0
0
null
1,435,923,380,000
1,435,923,379,000
null
UTF-8
Lean
false
false
856
lean
/- Copyright (c) 2016 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ prelude import init.meta.name init.meta.options init.meta.format init.meta.rb_map import init.meta.level init.meta.expr init.meta.environment init.meta.attr...
edc0e4f9bfab27898825bdcad50fbf1aede20fd8
9b9a16fa2cb737daee6b2785474678b6fa91d6d4
/src/computability/partrec_code.lean
dbc39ca2fb078c29066c3dc7a41ed731b14e76ca
[ "Apache-2.0" ]
permissive
johoelzl/mathlib
253f46daa30b644d011e8e119025b01ad69735c4
592e3c7a2dfbd5826919b4605559d35d4d75938f
refs/heads/master
1,625,657,216,488
1,551,374,946,000
1,551,374,946,000
98,915,829
0
0
Apache-2.0
1,522,917,267,000
1,501,524,499,000
Lean
UTF-8
Lean
false
false
37,518
lean
/- Copyright (c) 2018 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Mario Carneiro Godel numbering for partial recursive functions. -/ import computability.partrec open encodable denumerable namespace nat.partrec open nat (mkpair) theorem rfind' {f}...
fb9518b5c8febe4ffa6be0ec0d22bdc3d1229963
d406927ab5617694ec9ea7001f101b7c9e3d9702
/src/category_theory/idempotents/karoubi_karoubi.lean
12d9e69c2588bf1a3a541b23dfad31e2fdf3a729
[ "Apache-2.0" ]
permissive
alreadydone/mathlib
dc0be621c6c8208c581f5170a8216c5ba6721927
c982179ec21091d3e102d8a5d9f5fe06c8fafb73
refs/heads/master
1,685,523,275,196
1,670,184,141,000
1,670,184,141,000
287,574,545
0
0
Apache-2.0
1,670,290,714,000
1,597,421,623,000
Lean
UTF-8
Lean
false
false
2,804
lean
/- Copyright (c) 2022 Joël Riou. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Joël Riou -/ import category_theory.idempotents.karoubi /-! # Idempotence of the Karoubi envelope In this file, we construct the equivalence of categories `karoubi_karoubi.equivalence C ...
e09d20beab0b48067b61085ac577ecc9c8f27fe7
6e41ee3ac9b96e8980a16295cc21f131e731884f
/library/data/nat/comm_semiring.lean
5474db55ab10001f46c7eb95cb9e51958d4928db
[ "Apache-2.0" ]
permissive
EgbertRijke/lean
3426cfa0e5b3d35d12fc3fd7318b35574cb67dc3
4f2e0c6d7fc9274d953cfa1c37ab2f3e799ab183
refs/heads/master
1,610,834,871,476
1,422,159,801,000
1,422,159,801,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
2,420
lean
/- Copyright (c) 2014 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Module: data.nat.comm_semiring Author: Jeremy Avigad ℕ is a comm_semiring. -/ import data.nat.basic algebra.binary algebra.ring open binary namespace nat section open [classes] algebra ...
d0406416c2be06dc0f0395098a553d429e787595
97f752b44fd85ec3f635078a2dd125ddae7a82b6
/hott/homotopy/smash.hlean
839847b0fab1299af2a1e4087159e77ecdef235a
[ "Apache-2.0" ]
permissive
tectronics/lean
ab977ba6be0fcd46047ddbb3c8e16e7c26710701
f38af35e0616f89c6e9d7e3eb1d48e47ee666efe
refs/heads/master
1,532,358,526,384
1,456,276,623,000
1,456,276,623,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
3,358
hlean
/- Copyright (c) 2016 Jakob von Raumer. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Jakob von Raumer The Smash Product of Types -/ import hit.pushout .wedge .cofiber .susp .sphere open eq pushout prod pointed pType is_trunc definition product_of_wedge [construct...
55d6ddfa636ca42838bd15ea5f5e8791e1f4fa5d
432d948a4d3d242fdfb44b81c9e1b1baacd58617
/src/tactic/aesop/percent.lean
a4a98f8b45fa30f305e255950d3e8e940be9f52d
[ "Apache-2.0" ]
permissive
JLimperg/aesop3
306cc6570c556568897ed2e508c8869667252e8a
a4a116f650cc7403428e72bd2e2c4cda300fe03f
refs/heads/master
1,682,884,916,368
1,620,320,033,000
1,620,320,033,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
1,381
lean
/- Copyright (c) 2021 Jannis Limperg. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Jannis Limperg -/ import tactic.core namespace tactic.aesop /- Invariant: between 0 and 100 -/ @[derive has_reflect] structure percent := (to_nat : ℕ) namespace percent protected ...
c06608dc2811680ba814672e8e1d5ba53d39e731
2a70b774d16dbdf5a533432ee0ebab6838df0948
/_target/deps/mathlib/src/data/list/chain.lean
98a10e2b667ca0403d033b660b97ef5fdd030f68
[ "Apache-2.0" ]
permissive
hjvromen/lewis
40b035973df7c77ebf927afab7878c76d05ff758
105b675f73630f028ad5d890897a51b3c1146fb0
refs/heads/master
1,677,944,636,343
1,676,555,301,000
1,676,555,301,000
327,553,599
0
0
null
null
null
null
UTF-8
Lean
false
false
12,552
lean
/- Copyright (c) 2018 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro, Kenny Lau, Yury Kudryashov -/ import data.list.pairwise import logic.relation universes u v open nat variables {α : Type u} {β : Type v} namespace list /- chain re...
98dc62577561283ae1211c3746572c8ee093c9ed
8cae430f0a71442d02dbb1cbb14073b31048e4b0
/src/algebra/order/field/canonical/basic.lean
90e5f56e0bb7df177eda94c80d0ffa23b998ba5c
[ "Apache-2.0" ]
permissive
leanprover-community/mathlib
56a2cadd17ac88caf4ece0a775932fa26327ba0e
442a83d738cb208d3600056c489be16900ba701d
refs/heads/master
1,693,584,102,358
1,693,471,902,000
1,693,471,902,000
97,922,418
1,595
352
Apache-2.0
1,694,693,445,000
1,500,624,130,000
Lean
UTF-8
Lean
false
false
709
lean
/- Copyright (c) 2014 Robert Lewis. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Robert Lewis, Leonardo de Moura, Mario Carneiro, Floris van Doorn -/ import algebra.order.field.canonical.defs /-! # Lemmas about canonically ordered semifields. > THIS FILE IS SYNCHRO...
51ef04fc290cbb634363c54735f9ad5de29fff42
2cf781335f4a6706b7452ab07ce323201e2e101f
/lean/deps/sexpr/src/galois/sexpr.lean
dbbc6ac1bd7205f16ce7f4a768406e8165f47533
[ "Apache-2.0" ]
permissive
simonjwinwood/reopt-vcg
697cdd5e68366b5aa3298845eebc34fc97ccfbe2
6aca24e759bff4f2230bb58270bac6746c13665e
refs/heads/master
1,586,353,878,347
1,549,667,148,000
1,549,667,148,000
159,409,828
0
0
null
1,543,358,444,000
1,543,358,444,000
null
UTF-8
Lean
false
false
5,935
lean
/- This declares an s-expression datatype for generating expressions and reasoning about their interpretation. -/ import system.io import data.array.lemmas -- from mathlib import galois.category.except import galois.data.array import galois.data.buffer import galois.data.list import galois.data.nat import .char_reade...
4d1992c58b998fecf298fa1f286dbc4d12f51a61
d3aa99b88d7159fbbb8ab10d699374ab7be89e03
/src/measure_theory/integration.lean
4fe02af799a08573bfeb837ccea0cb5986b53027
[ "Apache-2.0" ]
permissive
mzinkevi/mathlib
62e0920edaf743f7fc53aaf42a08e372954af298
c718a22925872db4cb5f64c36ed6e6a07bdf647c
refs/heads/master
1,599,359,590,404
1,573,098,221,000
1,573,098,221,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
46,318
lean
/- Copyright (c) 2018 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro, Johannes Hölzl Lebesgue integral on `ennreal`. We define simple functions and show that each Borel measurable function on `ennreal` can be approximated by a sequence ...
4f10c4c48ba91b54e6bcecceb2fea3675a48baa6
ebf7140a9ea507409ff4c994124fa36e79b4ae35
/src/solutions/tuesday/numbers.lean
4fc06ca13c132ccc28f4b68b860e750ba2f9fa4c
[]
no_license
fundou/lftcm2020
3e88d58a92755ea5dd49f19c36239c35286ecf5e
99d11bf3bcd71ffeaef0250caa08ecc46e69b55b
refs/heads/master
1,685,610,799,304
1,624,070,416,000
1,624,070,416,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
5,018
lean
import tactic import data.real.basic import data.int.gcd import number_theory.padics /-! ## Exercises about numbers and casts -/ /-! ## First exercises These first examples are just to get you comfortable with `norm_num`, `norm_cast`, and friends. -/ example : 12345 < 67890 := begin norm_num end example {α ...
275945816c52d8fb0a433e0ddca26701678cc485
947b78d97130d56365ae2ec264df196ce769371a
/stage0/src/Lean/Runtime.lean
611434c7dd6238f4ba22a3bbe724230532b21309
[ "Apache-2.0" ]
permissive
shyamalschandra/lean4
27044812be8698f0c79147615b1d5090b9f4b037
6e7a883b21eaf62831e8111b251dc9b18f40e604
refs/heads/master
1,671,417,126,371
1,601,859,995,000
1,601,860,020,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
458
lean
/- Copyright (c) 2019 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Leonardo de Moura -/ namespace Lean @[extern "lean_closure_max_args"] constant closureMaxArgsFn : Unit → Nat := arbitrary _ @[extern "lean_max_small_nat"] constant maxSmallNa...
84528985657c85af849fa584afb735e7204fc9f4
f5373ccdc976e6390397d9f4220a74c76f706f4a
/src/examples/main_entry.lean
ae2e0ed1b71b7214c00493745258081ae057ea8a
[]
no_license
jasonrute/lean_gym_prototype
fcd91fdc454f9e351bbe258c765f50276407547e
ab29624d14e4e069e15afe0b1d90248b5b394b86
refs/heads/master
1,682,628,526,780
1,590,539,315,000
1,590,539,315,000
264,938,525
3
0
null
null
null
null
UTF-8
Lean
false
false
394
lean
import lean_gym.server -- set up server meta def json_config : json_server lean_server_request lean_server_response := { read_write := io_streams.stdin_stdout_streams, get_json := json_server.get_custom_json, -- use custom format since faster put_json := json_server.put_standard_json, -- use standard format ...
3427ee15a15c25a04fd45687a6d3535e6f9f3882
69d4931b605e11ca61881fc4f66db50a0a875e39
/src/data/zsqrtd/basic.lean
2fc118a957dd4201f14571fd50917187351922c5
[ "Apache-2.0" ]
permissive
abentkamp/mathlib
d9a75d291ec09f4637b0f30cc3880ffb07549ee5
5360e476391508e092b5a1e5210bd0ed22dc0755
refs/heads/master
1,682,382,954,948
1,622,106,077,000
1,622,106,077,000
149,285,665
0
0
null
null
null
null
UTF-8
Lean
false
false
31,664
lean
/- Copyright (c) 2017 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro -/ import algebra.associated import tactic.ring /-- The ring of integers adjoined with a square root of `d`. These have the form `a + b √d` where `a b : ℤ`. The compo...
654485eb572a2838bdfddf9290d4a028a19a638a
64874bd1010548c7f5a6e3e8902efa63baaff785
/hott/init/types/empty.hlean
fea08e5b5118a1cad3a1d3435f19817a6c1bbbf9
[ "Apache-2.0" ]
permissive
tjiaqi/lean
4634d729795c164664d10d093f3545287c76628f
d0ce4cf62f4246b0600c07e074d86e51f2195e30
refs/heads/master
1,622,323,796,480
1,422,643,069,000
1,422,643,069,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
494
hlean
-- Copyright (c) 2014 Microsoft Corporation. All rights reserved. -- Released under Apache 2.0 license as described in the file LICENSE. -- Author: Jeremy Avigad, Floris van Doorn, Jakob von Raumer prelude import ..datatypes ..logic -- Empty type -- ---------- namespace empty protected theorem elim (A : Type) (H ...
6a1cf8a87453ce4c2e96387d18d5988c35da3dbe
b04370a335fa89c708a3d43678d79c1f61aa24c7
/library/init/data/list/instances.lean
4680964724a3d983a1a0fd10d86dcae5b7d88faa
[ "Apache-2.0" ]
permissive
jalex-stark/lean
9b97cd8b0eb970ab0d4cdbc7b4dd57645f33a92c
85ba44431d77c8222342c7616f0bfa98fba88368
refs/heads/master
1,664,328,815,754
1,590,514,885,000
1,590,514,885,000
267,196,280
0
0
null
1,590,544,752,000
1,590,544,752,000
null
UTF-8
Lean
false
false
1,794
lean
/- Copyright (c) 2016 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura -/ prelude import init.data.list.lemmas open list universes u v local attribute [simp] join list.ret instance : monad list := { pure := @list.ret, map := @l...
c56c6720d13872aed40563d2da537fd3729da116
b7f22e51856f4989b970961f794f1c435f9b8f78
/tests/lean/run/blast8.lean
c7879746f61cc60e4c4d36789725e9a233c7890d
[ "Apache-2.0" ]
permissive
soonhokong/lean
cb8aa01055ffe2af0fb99a16b4cda8463b882cd1
38607e3eb57f57f77c0ac114ad169e9e4262e24f
refs/heads/master
1,611,187,284,081
1,450,766,737,000
1,476,122,547,000
11,513,992
2
0
null
1,401,763,102,000
1,374,182,235,000
C++
UTF-8
Lean
false
false
451
lean
open nat set_option blast.strategy "preprocess" lemma l1 (a : nat) : zero = succ a → a = a → false := by blast lemma l2 (p : Prop) (a : nat) : zero = succ a → a = a → p := by blast lemma l3 (a b : nat) : succ (succ a) = succ (succ b) → a = b := by blast lemma l4 (a b : nat) : succ a = succ b → a = b := by blast le...
c485bde31bdaedcbf04aaf1acb3e0c2f94ad2176
b32d3853770e6eaf06817a1b8c52064baaed0ef1
/test/lpo.lean
08b8e4f50bdf6c7b784ac1ca63e6c4975de67d6c
[]
no_license
gebner/super2
4d58b7477b6f7d945d5d866502982466db33ab0b
9bc5256c31750021ab97d6b59b7387773e54b384
refs/heads/master
1,635,021,682,021
1,634,886,326,000
1,634,886,326,000
225,600,688
4
2
null
1,598,209,306,000
1,575,371,550,000
Lean
UTF-8
Lean
false
false
468
lean
import super.lpo open tactic expr super example (x : ℕ) : true := by do x ← get_local `x, let gt := mk_lpo [``eq, x.local_uniq_name, ``has_add.add, ``has_zero.zero], let d (x y : pexpr) := (do x ← to_expr x, y ← to_expr y, trace (x,y,gt x y)), d ```(x + x) ```(x), d ```(x + 0) ```(x), d ```(x) ```(x + 0), d ``...
fbff5968b1fb7d9aa5c351ee5e5cd5bbb72c39e5
f20db13587f4dd28a4b1fbd31953afd491691fa0
/library/init/native/result.lean
dd3088fd26e10160966e0b12e1fc3d67abe7a8cc
[ "Apache-2.0" ]
permissive
AHartNtkn/lean
9a971edfc6857c63edcbf96bea6841b9a84cf916
0d83a74b26541421fc1aa33044c35b03759710ed
refs/heads/master
1,620,592,591,236
1,516,749,881,000
1,516,749,881,000
118,697,288
1
0
null
1,516,759,470,000
1,516,759,470,000
null
UTF-8
Lean
false
false
2,189
lean
/- Copyright (c) 2016 Jared Roesch. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Jared Roesch -/ prelude import init.meta.interactive namespace native inductive result (E : Type) (R : Type) : Type | err {} : E → result | ok {} : R → result def unwrap_or {E T : Ty...
131b3fe0a9dae9235aba5922715447c401346407
63abd62053d479eae5abf4951554e1064a4c45b4
/src/data/list/forall2.lean
c91f13f1964beb2bd7addac50f246c7fe9933d6e
[ "Apache-2.0" ]
permissive
Lix0120/mathlib
0020745240315ed0e517cbf32e738d8f9811dd80
e14c37827456fc6707f31b4d1d16f1f3a3205e91
refs/heads/master
1,673,102,855,024
1,604,151,044,000
1,604,151,044,000
308,930,245
0
0
Apache-2.0
1,604,164,710,000
1,604,163,547,000
null
UTF-8
Lean
false
false
10,063
lean
/- Copyright (c) 2018 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro, Johannes Hölzl -/ import data.list.basic universes u v w z open nat function variables {α : Type u} {β : Type v} {γ : Type w} {δ : Type z} namespace list /- forall₂...
af357efdf8346075db996b41ca8a8a5917aa83fa
8e6cad62ec62c6c348e5faaa3c3f2079012bdd69
/src/data/list/zip.lean
c739b575ba971a55f43120d7e6ffc4b301364a64
[ "Apache-2.0" ]
permissive
benjamindavidson/mathlib
8cc81c865aa8e7cf4462245f58d35ae9a56b150d
fad44b9f670670d87c8e25ff9cdf63af87ad731e
refs/heads/master
1,679,545,578,362
1,615,343,014,000
1,615,343,014,000
312,926,983
0
0
Apache-2.0
1,615,360,301,000
1,605,399,418,000
Lean
UTF-8
Lean
false
false
11,373
lean
/- Copyright (c) 2018 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro, Kenny Lau -/ import data.list.basic universes u v w z variables {α : Type u} {β : Type v} {γ : Type w} {δ : Type z} open nat namespace list /- zip & unzip -/ @[si...
5934883327a39f6300dbbd26986b3d773a131833
36c7a18fd72e5b57229bd8ba36493daf536a19ce
/hott/function.hlean
2ac85a9e4ae4ce7739cfdc78abcb85884d7e8ece
[ "Apache-2.0" ]
permissive
YHVHvx/lean
732bf0fb7a298cd7fe0f15d82f8e248c11db49e9
038369533e0136dd395dc252084d3c1853accbf2
refs/heads/master
1,610,701,080,210
1,449,128,595,000
1,449,128,595,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
11,035
hlean
/- Copyright (c) 2015 Floris van Doorn. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Floris van Doorn Ported from Coq HoTT Theorems about embeddings and surjections -/ import hit.trunc types.equiv cubical.square open equiv sigma sigma.ops eq trunc is_trunc pi is_eq...
e54645d14b1d0bdd525c0edf94b9796a939e1d2c
6432ea7a083ff6ba21ea17af9ee47b9c371760f7
/src/lake/Lake/Build/Targets.lean
ceef5fa2bbca68cb2e5354668487d35ec0cefd11
[ "Apache-2.0", "LLVM-exception", "NCSA", "LGPL-3.0-only", "LicenseRef-scancode-inner-net-2.0", "BSD-3-Clause", "LGPL-2.0-or-later", "Spencer-94", "LGPL-2.1-or-later", "HPND", "LicenseRef-scancode-pcre", "ISC", "LGPL-2.1-only", "LicenseRef-scancode-other-permissive", "SunPro", "CMU-Mach"...
permissive
leanprover/lean4
4bdf9790294964627eb9be79f5e8f6157780b4cc
f1f9dc0f2f531af3312398999d8b8303fa5f096b
refs/heads/master
1,693,360,665,786
1,693,350,868,000
1,693,350,868,000
129,571,436
2,827
311
Apache-2.0
1,694,716,156,000
1,523,760,560,000
Lean
UTF-8
Lean
false
false
4,792
lean
/- Copyright (c) 2023 Mac Malone. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mac Malone -/ import Lake.Build.Monad /-! # Build Target Fetching Utilities for fetching package, library, module, and executable targets and facets. -/ namespace Lake /-! ## Package Fa...
8ff735836c60e9303146af43a927202494e70026
367134ba5a65885e863bdc4507601606690974c1
/src/linear_algebra/invariant_basis_number.lean
b7a9c01f8db022cd969c0fb228e6746db304c8d2
[ "Apache-2.0" ]
permissive
kodyvajjha/mathlib
9bead00e90f68269a313f45f5561766cfd8d5cad
b98af5dd79e13a38d84438b850a2e8858ec21284
refs/heads/master
1,624,350,366,310
1,615,563,062,000
1,615,563,062,000
162,666,963
0
0
Apache-2.0
1,545,367,651,000
1,545,367,651,000
null
UTF-8
Lean
false
false
5,601
lean
/- Copyright (c) 2020 Markus Himmel. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Markus Himmel -/ import linear_algebra.finite_dimensional import ring_theory.ideal.basic /-! # Invariant basis number property We say that a ring `R` satisfies the invariant basis num...
76657fd686b4a41ba5e0abd7c28ec30bc4b70694
d406927ab5617694ec9ea7001f101b7c9e3d9702
/src/data/nat/digits.lean
8cb8a404477427b6d2d2eabdd15994bada81a0b7
[ "Apache-2.0" ]
permissive
alreadydone/mathlib
dc0be621c6c8208c581f5170a8216c5ba6721927
c982179ec21091d3e102d8a5d9f5fe06c8fafb73
refs/heads/master
1,685,523,275,196
1,670,184,141,000
1,670,184,141,000
287,574,545
0
0
Apache-2.0
1,670,290,714,000
1,597,421,623,000
Lean
UTF-8
Lean
false
false
23,231
lean
/- Copyright (c) 2020 Scott Morrison. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Scott Morrison, Shing Tak Lam, Mario Carneiro -/ import data.int.modeq import data.nat.bits import data.nat.log import data.list.indexes import data.list.palindrome import algebra.pari...
6c1042a5a3ba8ac2e6c5b6e40f44ceee4c3d7a49
432d948a4d3d242fdfb44b81c9e1b1baacd58617
/src/category_theory/preadditive/default.lean
46e4fa03aa06adbfa1c9b3fbee2d67c63733e08f
[ "Apache-2.0" ]
permissive
JLimperg/aesop3
306cc6570c556568897ed2e508c8869667252e8a
a4a116f650cc7403428e72bd2e2c4cda300fe03f
refs/heads/master
1,682,884,916,368
1,620,320,033,000
1,620,320,033,000
null
0
0
null
null
null
null
UTF-8
Lean
false
false
8,585
lean
/- Copyright (c) 2020 Markus Himmel. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Markus Himmel -/ import algebra.group.hom import category_theory.limits.shapes.kernels import algebra.big_operators.basic import category_theory.endomorphism /-! # Preadditive categori...
ede3fbad8c708256760f099ff69de772903500a6
9dc8cecdf3c4634764a18254e94d43da07142918
/src/topology/algebra/order/basic.lean
442c1e88eba917032f7b78137d36222b93169671
[ "Apache-2.0" ]
permissive
jcommelin/mathlib
d8456447c36c176e14d96d9e76f39841f69d2d9b
ee8279351a2e434c2852345c51b728d22af5a156
refs/heads/master
1,664,782,136,488
1,663,638,983,000
1,663,638,983,000
132,563,656
0
0
Apache-2.0
1,663,599,929,000
1,525,760,539,000
Lean
UTF-8
Lean
false
false
139,592
lean
/- Copyright (c) 2017 Johannes Hölzl. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Johannes Hölzl, Mario Carneiro, Yury Kudryashov -/ import algebra.group_with_zero.power import data.set.intervals.pi import order.filter.interval import topology.algebra.field import t...
def39e86060b96b110677aa77c6778ff8b9c6319
7b66d83f3b69dae0a3dfb684d7ebe5e9e3f3c913
/src/exercises_sources/thursday/afternoon/category_theory/exercise7.lean
7ca24b0e02fe3fd9ce3998b1748c657776be5851
[]
permissive
dpochekutov/lftcm2020
58a09e10f0e638075b97884d3c2612eb90296adb
cdfbf1ac089f21058e523db73f2476c9c98ed16a
refs/heads/master
1,669,226,265,076
1,594,629,725,000
1,594,629,725,000
279,213,346
1
0
MIT
1,594,622,757,000
1,594,615,843,000
null
UTF-8
Lean
false
false
1,214
lean
import algebra.category.CommRing.basic import data.polynomial /-! Let show that taking polynomials over a ring is functor `Ring ⥤ Ring`. -/ noncomputable theory -- the default implementation of polynomials is noncomputable /-! mathlib is undergoing a transition at the moment from using "unbundled" homomorphisms (e.g...
31f9fe8fa80be8639710d997bc8321e05c8467f1
fa02ed5a3c9c0adee3c26887a16855e7841c668b
/test/generalize_proofs.lean
0c79bd609af03a0c5ad40bbb10bef33b0b5931ce
[ "Apache-2.0" ]
permissive
jjgarzella/mathlib
96a345378c4e0bf26cf604aed84f90329e4896a2
395d8716c3ad03747059d482090e2bb97db612c8
refs/heads/master
1,686,480,124,379
1,625,163,323,000
1,625,163,323,000
281,190,421
2
0
Apache-2.0
1,595,268,170,000
1,595,268,169,000
null
UTF-8
Lean
false
false
817
lean
import tactic.generalize_proofs example (x : ℕ) (h : x < 2) : classical.some ⟨x, h⟩ < 2 := begin generalize_proofs a, guard_hyp a : ∃ x, x < 2, guard_target classical.some a < 2, exact classical.some_spec a, end example (a : ∃ x, x < 2) : classical.some a < 2 := begin generalize_proofs, guard_target class...
2c217e3d9d2042e03e2063fa66a58ecf26250bb9
cf39355caa609c0f33405126beee2739aa3cb77e
/tests/lean/run/univ_bug2.lean
3b7e3b83913f9c72174607dd4f8e72e85d6ddbba
[ "Apache-2.0" ]
permissive
leanprover-community/lean
12b87f69d92e614daea8bcc9d4de9a9ace089d0e
cce7990ea86a78bdb383e38ed7f9b5ba93c60ce0
refs/heads/master
1,687,508,156,644
1,684,951,104,000
1,684,951,104,000
169,960,991
457
107
Apache-2.0
1,686,744,372,000
1,549,790,268,000
C++
UTF-8
Lean
false
false
887
lean
---------------------------------------------------------------------------------------------------- --- Copyright (c) 2014 Microsoft Corporation. All rights reserved. --- Released under Apache 2.0 license as described in the file LICENSE. --- Author: Jeremy Avigad ------------------------------------------------------...
ddc7d417d610b8be1709aa6993d6fc600ce6c3a8
5ae26df177f810c5006841e9c73dc56e01b978d7
/src/algebra/order_functions.lean
1d0092c3ed844a8b6e46b7369ac04fc75102c103
[ "Apache-2.0" ]
permissive
ChrisHughes24/mathlib
98322577c460bc6b1fe5c21f42ce33ad1c3e5558
a2a867e827c2a6702beb9efc2b9282bd801d5f9a
refs/heads/master
1,583,848,251,477
1,565,164,247,000
1,565,164,247,000
129,409,993
0
1
Apache-2.0
1,565,164,817,000
1,523,628,059,000
Lean
UTF-8
Lean
false
false
10,304
lean
/- Copyright (c) 2017 Mario Carneiro. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Authors: Mario Carneiro -/ import algebra.ordered_group order.lattice open lattice universes u v variables {α : Type u} {β : Type v} attribute [simp] max_eq_left max_eq_right min_eq_left min...