-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
239726c
commit 7f910e8
Showing
3 changed files
with
70 additions
and
16 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,65 @@ | ||
import { Data } from './datastructures/data'; | ||
import { | ||
ChoiceTree, | ||
ChoiceTreeNode, | ||
Stats, | ||
pathToString, | ||
stepTreeRandomDFS, | ||
} from './engine/choiceengine'; | ||
import { makeInitialDb } from './engine/forwardengine'; | ||
import { compile } from './langauge/compile'; | ||
import { parse } from './langauge/dusa-parser'; | ||
import { IndexedProgram } from './langauge/indexize'; | ||
import { check } from './langauge/syntax'; | ||
import { Issue } from './parsing/parser'; | ||
|
||
export type { Issue, Stats }; | ||
export type { SourcePosition, SourceLocation } from './parsing/source-location'; | ||
|
||
export class DusaError extends Error { | ||
issues: Issue[]; | ||
constructor(issues: Issue[]) { | ||
super(); | ||
this.issues = issues; | ||
} | ||
} | ||
|
||
export class Dusa { | ||
private program: IndexedProgram; | ||
private debug: boolean; | ||
|
||
constructor(source: string, debug = false) { | ||
const parsed = parse(source); | ||
if (parsed.errors !== null) { | ||
throw new DusaError(parsed.errors); | ||
} | ||
|
||
const checked = check(parsed.document); | ||
if (checked.errors !== null) { | ||
throw checked.errors; | ||
} | ||
|
||
this.debug = debug; | ||
this.program = compile(checked.decls, debug); | ||
} | ||
|
||
run() { | ||
let tree: null | ChoiceTree = { type: 'leaf', db: makeInitialDb(this.program) }; | ||
let path: [ChoiceTreeNode, Data | 'defer'][] = []; | ||
const stats: Stats = { cycles: 0, deadEnds: 0 }; | ||
for (;;) { | ||
if (tree === null) return null; | ||
if (this.debug) { | ||
console.log(pathToString(tree, path)); | ||
} | ||
|
||
const result = stepTreeRandomDFS(this.program, tree, path, stats); | ||
tree = result.tree; | ||
path = result.tree === null ? path : result.path; | ||
|
||
if (result.solution) { | ||
return stats; | ||
} | ||
} | ||
} | ||
} |