Skip to content

mdbook fix #679

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions book/src/engine/major_concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ An [`ExClause`] is described in literature as `A :- D | G` or
`A holds given that G holds with D delayed goals`. In `chalk-engine`, an
`ExClause` stores the current state of proving a goal, including existing
substitutions already found, subgoals yet to be proven, or delayed subgoals. A
[`Strand`] wraps both an [`ExClause`] and an [`TruncatingInferenceTable`] together.
[`Strand`] wraps both an [`ExClause`] and an [`InferenceTable`] together.

## Tables and Forests

Expand All @@ -78,7 +78,7 @@ stack).

[`Context`]: https://rust-lang.github.io/chalk/chalk_engine/context/trait.Context.html
[`ContextOps`]: https://rust-lang.github.io/chalk/chalk_engine/context/trait.ContextOps.html
[`TruncatingInferenceTable`]: https://rust-lang.github.io/chalk/chalk_engine/slg/struct.TruncatingInferenceTable.html
[`InferenceTable`]: https://rust-lang.github.io/chalk/chalk_solve/infer/struct.InferenceTable.html
[`Solution`]: https://rust-lang.github.io/chalk/chalk_solve/solve/enum.Solution.html
[`ExClause`]: https://rust-lang.github.io/chalk/chalk_engine/struct.ExClause.html
[`Strand`]: https://rust-lang.github.io/chalk/chalk_engine/strand/struct.Strand.html
Expand Down