Skip to content

Mentions to Goal in major_concepts are meant to be DomainGoal #707

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
May 15, 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 @@ -9,9 +9,9 @@ logic.
A "goal" in Chalk can be thought of as "something we want to prove". The engine
itself understands `GoalData`s. `GoalData`s consist of the most basic logic,
such as introducing Binders (`Forall` or `Exists`) or combining goals (`All`).
On the other hand, `Goal` represents an opaque goal generated
On the other hand, `DomainGoal` represents an opaque goal generated
externally. As such, it may contain any extra information or may be interned.
When solving a logic predicate, Chalk will lazily convert `Goal`s
When solving a logic predicate, Chalk will lazily convert `DomainGoal`s
into `GoalData`s.

There are three types of completely opaque `GoalData`s that Chalk can solve:
Expand Down