-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This removes some code that was upstreamed, adding it instead to the readme.
- Loading branch information
1 parent
0610866
commit 3de572f
Showing
10 changed files
with
50 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "lean-ga" | ||
version = "0.1" | ||
lean_version = "leanprover-community/lean:3.47.0" | ||
lean_version = "leanprover-community/lean:3.48.0" | ||
path = "src" | ||
|
||
[dependencies] | ||
mathlib = {git = "https://github.com/leanprover-community/mathlib", rev = "371b4143b0298311cf76de600deb109816645e0f"} | ||
mathlib = {git = "https://github.com/leanprover-community/mathlib", rev = "f86ad885a0d049288b9e2742b8d55f363ebc3756"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/- | ||
Copyright (c) 2022 Eric Wieser. All rights reserved. | ||
Released under MIT license as described in the file LICENSE. | ||
Authors: Eric Wieser | ||
-/ | ||
import analysis.inner_product_space.basic | ||
import linear_algebra.bilinear_form | ||
|
||
/-- The real inner product as a bilinear form. -/ | ||
@[simps] | ||
noncomputable def bilin_form_of_real_inner {F : Type*} [inner_product_space ℝ F] : bilin_form ℝ F := | ||
{ bilin := inner, | ||
bilin_add_left := λ x y z, inner_add_left, | ||
bilin_smul_left := λ a x y, inner_smul_left, | ||
bilin_add_right := λ x y z, inner_add_right, | ||
bilin_smul_right := λ a x y, inner_smul_right } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.