You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -82,13 +82,13 @@ In particular, the `math/field.sage` computes roots of unity in the `PlutoField`
82
82
## Building mdBook
83
83
84
84
To locally build/serve the [mdBook](https://github.com/rust-lang/mdBook) site, install mdBook and [mdbook-katex](https://github.com/lzanini/mdbook-katex):
85
-
```
85
+
```ignore
86
86
cargo install mdbook
87
87
cargo install mdbook-katex
88
88
```
89
89
90
90
To build, run:
91
-
```
91
+
```ignore
92
92
cargo run --bin create_mdbook
93
93
cp -r assets book/
94
94
mdbook build
@@ -98,7 +98,7 @@ If you want to serve locally, run `mdbook serve`.
98
98
99
99
## License
100
100
101
-
Licensed under the Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
101
+
Licensed under the Apache License, Version 2.0 ([LICENSE-APACHE](./LICENSE) or http://www.apache.org/licenses/LICENSE-2.0)
Copy file name to clipboardExpand all lines: src/algebra/group/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ The structs that implement these traits are
19
19
20
20
### `MultiplicativePrimeGroup`
21
21
The `MultiplicativePrimeGroup` struct is a wrapper around a `usize` that defines $(Z/nZ)^{*}$ for a prime power $n=p^k$ with binary operation as $\times$:
@@ -107,7 +107,7 @@ Converts `WireValues` to required polynomials in PLONK, i.e.
107
107
108
108
To get selector polynomials from constraints, each constraint is parsed into fan-in 2 arithmetic gates as explained above and wire values are assigned to respective wires in lagrange form.
109
109
110
-
```rust
110
+
```rust,ignore
111
111
/// `CommonPreprocessedInput` represents circuit related input which is apriori known to `Prover`
0 commit comments