-
Notifications
You must be signed in to change notification settings - Fork 7
/
blurb.html
68 lines (68 loc) · 3.64 KB
/
blurb.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<h2 id="about">About</h2>
<p>Loogle searches Lean and Mathlib definitions and theorems.</p>
<p>You can use Loogle from within the Lean4 VSCode language extension
using (by default) Ctrl-K Ctrl-S. You can also try the
<code>#loogle</code> command from <a
href="https://github.com/leanprover-community/LeanSearchClient">LeanSearchClient</a>,
the <a href="https://github.com/nomeata/loogle">CLI version</a>, the <a
href="https://marketplace.visualstudio.com/items?itemName=ShreyasSrinivas.loogle-lean">Loogle
VS Code extension</a>, the <a
href="https://github.com/Julian/lean.nvim#features"><code>lean.nvim</code>
integration</a> or the <a
href="https://github.com/nomeata/loogle#zulip-bot">Zulip bot</a>.</p>
<h2 id="usage">Usage</h2>
<p>Loogle finds definitions and lemmas in various ways:</p>
<ol type="1">
<li><p>By constant:<br />
🔍 <a href="?q=Real.sin"><code>Real.sin</code></a><br />
finds all lemmas whose statement somehow mentions the sine
function.</p></li>
<li><p>By lemma name substring:<br />
🔍 <a href="?q=%22differ%22"><code>"differ"</code></a><br />
finds all lemmas that have <code>"differ"</code> somewhere in their
lemma <em>name</em>.</p></li>
<li><p>By subexpression:<br />
🔍 <a href="?q=_+*+(_+%5E+_)"><code>_ * (_ ^ _)</code></a><br />
finds all lemmas whose statements somewhere include a product where the
second argument is raised to some power.</p>
<p>The pattern can also be non-linear, as in<br />
🔍 <a
href="?q=Real.sqrt+%3Fa+*+Real.sqrt+%3Fa"><code>Real.sqrt ?a * Real.sqrt ?a</code></a></p>
<p>If the pattern has parameters, they are matched in any order. Both of
these will find <code>List.map</code>:<br />
🔍 <a
href="?q=(?a%20-%3E%20?b)%20-%3E%20List%20?a%20-%3E%20List%20?b"><code>(?a -> ?b) -> List ?a -> List ?b</code></a><br />
🔍 <a
href="?q=List%20?a%20-%3E%20(?a%20-%3E%20?b)%20-%3E%20List%20?b"><code>List ?a -> (?a -> ?b) -> List ?b</code></a></p></li>
<li><p>By main conclusion:<br />
🔍 <a
href="?q=%7C-%20tsum%20_%20=%20_%20*%20tsum%20_"><code>|- tsum _ = _ * tsum _</code></a><br />
finds all lemmas where the conclusion (the subexpression to the right of
all <code>→</code> and <code>∀</code>) has the given shape.</p>
<p>As before, if the pattern has parameters, they are matched against
the hypotheses of the lemma in any order; for example,<br />
🔍 <a
href="?q=%7C-%20_%20%3C%20_%20→%20tsum%20_%20%3C%20tsum%20_"><code>|- _ < _ → tsum _ < tsum _</code></a><br />
will find <code>tsum_lt_tsum</code> even though the hypothesis
<code>f i < g i</code> is not the last.</p></li>
</ol>
<p>If you pass more than one such search filter, separated by commas
Loogle will return lemmas which match <em>all</em> of them. The
search<br />
🔍 <a
href="?q=Real.sin,+%22two%22,+tsum,+_+*+_,+_+%5E+_,+%7C-+_+%3C+_+→+_"><code>Real.sin, "two", tsum, _ * _, _ ^ _, |- _ < _ → _</code></a><br />
woould find all lemmas which mention the constants <code>Real.sin</code>
and <code>tsum</code>, have <code>"two"</code> as a substring of the
lemma name, include a product and a power somewhere in the type,
<em>and</em> have a hypothesis of the form <code>_ < _</code> (if
there were any such lemmas). Metavariables (<code>?a</code>) are
assigned independently in each filter.</p>
<p>The <code>#lucky</code> button will directly send you to the
documentation of the first hit.</p>
<h2 id="source-code">Source code</h2>
<p>You can find the source code for this service at <a
href="https://github.com/nomeata/loogle"
class="uri">https://github.com/nomeata/loogle</a>. The <a
href="https://loogle.lean-lang.org/"
class="uri">https://loogle.lean-lang.org/</a> service is provided by the
<a href="https://lean-fro.org/">Lean FRO</a>.</p>