Свойство | Type | Description | |
---|---|---|---|
IndexicalBindingStack | object>>.List | ||
Output | |||
This | object |
Свойство | Type | Description | |
---|---|---|---|
AbortWokenGoals | void | ||
GetCallArgumentsAsArray | object[] | ||
GetStackTop | Structure | ||
NewStep | void | ||
PrologContext | System | ||
PrologContext | System | ||
Prove | IEnumerable |
||
Prove | IEnumerable |
||
ProveAllWokenGoals | IEnumerable |
||
ProveWokenGoalsInternal | IEnumerable |
||
PushArguments | void | ||
PushArguments | void | ||
PushGoalStack | void | ||
WakeUpGoal | void |
Méthode | Description | |
---|---|---|
Allocate ( |
Gets a context that is currently free to use. Should be relased afterward using ReleaseContext().
|
|
Dispose ( ) : void | ||
GetStack ( int frame, int offset ) : object |
Reads a value from the stack.
|
|
GoalStackGoal ( ushort frame ) : Structure |
Returns the goal at the specified position on the stack
|
|
GoalStackParent ( ushort frame ) : ushort |
Returns the stack position of the parent goal of the goal at the specified position on the stack
|
|
IsTrue ( Structure goal ) : bool |
Test whether GOAL is provable
|
|
IsTrue ( string predicateName ) : bool |
Test whether GOAL is provable
|
|
MakeFrame ( int size ) : int |
Reserve space for a new frame.
|
|
MarkTrail ( ) : int |
Marks a place on the trail so subsequent bindings can be undone. Present implementation does not actually modify the stack in any way.
|
|
PopFrame ( int framePointer ) : void |
Resets stack pointer to point at base of old frame.
|
|
PopGoalStack ( ) : void |
Mark that this is the start of a new clause Removes the top goal from the goal stack
|
|
PrologContext ( |
Creates a PrologContext that can for at most the specified number of steps.
|
|
Reset ( ) : void | ||
Reset ( object thisValue ) : void |
Forcibly clears the execution context.
|
|
ResetStackAndProve ( Structure goal ) : IEnumerable |
Resets the context (clears stack, etc.) and starts a proof of the specified goal.
|
|
ResetStackAndProve ( object goal ) : IEnumerable |
Resets the context (clears stack, etc.) and starts a proof of the specified goal.
|
|
ResetStepLimit ( ) : void |
Renews the step limit (e.g. for when the repl is asking for a new solution.
|
|
RestoreVariables ( int savedTrailPointer ) : void |
Restores the values of all variables back to the specified position on the trace (i.e. the undo stack).
|
|
SaveVariable ( |
Saves the current value of a variable on the trail (i.e. the undo stack).
|
|
SetCallArg ( int argumentNumber, object value ) : void |
Sets argument for an upcoming call.
|
|
SetCurrentRule ( Prolog.KnowledgeBaseEntry rule ) : void |
Set the rule currently being tried by the goal at the top of the stack.
|
|
SetStack ( int frame, int offset, object value ) : void |
Modifies a value from the stack.
|
|
StackTrace ( string sourcePath, int lineNumber, string toplevelCommand, bool fullTrace ) : string |
Generate a stack trace that's close enough to a normal mono stack dump that the Unity logger will understand it.
|
|
TraceOutput ( string format, object arg ) : void |
Prints trace information.
|
|
UnwindStack ( ushort depth ) : void |
Resets the stack to the specified depth.
|
Méthode | Description | |
---|---|---|
AbortWokenGoals ( int newTracePointer ) : void | ||
GetCallArgumentsAsArray ( int arity ) : object[] | ||
GetStackTop ( bool throwOnEmptyStack ) : Structure | ||
NewStep ( ) : void |
Check whether the maximum number of steps has been exceeded. Called when a new step is initiated.
|
|
PrologContext ( ) : System | ||
PrologContext ( |
Creates a PrologContext with PrologContext.DefaultStepLimit
|
|
Prove ( Structure goal ) : IEnumerable |
Proves the goal in the specified structure.
|
|
Prove ( object goal, string badGoalErrorMessage ) : IEnumerable |
Proves the specified goal, throwing an exception with badGoalErrorMessage if the goal is ill-formed.
|
|
ProveAllWokenGoals ( ) : IEnumerable |
Attempts to prove all woken goals, in the order they were woken.
|
|
ProveWokenGoalsInternal ( WokenGoal goals, int goalIndex ) : IEnumerable |
||
PushArguments ( IList args ) : void |
Copies args to a arguments position for the next stack frame.
|
|
PushArguments ( object args ) : void |
Copies args to a arguments position for the next stack frame.
|
|
PushGoalStack ( |
||
WakeUpGoal ( Structure goal ) : void |
public static Allocate ( |
||
kb | ||
thisValue | object | |
Résultat |
public GetStack ( int frame, int offset ) : object | ||
frame | int | Base address of stack frame |
offset | int | Offset into stack frame |
Résultat | object |
public GoalStackGoal ( ushort frame ) : Structure | ||
frame | ushort | |
Résultat | Structure |
public GoalStackParent ( ushort frame ) : ushort | ||
frame | ushort | |
Résultat | ushort |
public IsTrue ( Structure goal ) : bool | ||
goal | Structure | Goal to prove |
Résultat | bool |
public IsTrue ( string predicateName ) : bool | ||
predicateName | string | Name of the predicate to call |
Résultat | bool |
public MakeFrame ( int size ) : int | ||
size | int | Number of words needed for frame |
Résultat | int |
public PopFrame ( int framePointer ) : void | ||
framePointer | int | Base of the frame we're popping off |
Résultat | void |
public PrologContext ( |
||
kb | ||
stepLimit | int | |
Résultat | System |
public ResetStackAndProve ( Structure goal ) : IEnumerable |
||
goal | Structure | Goal to attempt to prove |
Résultat | IEnumerable |
public ResetStackAndProve ( object goal ) : IEnumerable |
||
goal | object | Goal to attempt to prove |
Résultat | IEnumerable |
public RestoreVariables ( int savedTrailPointer ) : void | ||
savedTrailPointer | int | |
Résultat | void |
public SaveVariable ( |
||
lvar | ||
Résultat | void |
public SetCallArg ( int argumentNumber, object value ) : void | ||
argumentNumber | int | Index of the argument (0=first, 1=second, etc.) |
value | object | Value of the argument |
Résultat | void |
public SetCurrentRule ( Prolog.KnowledgeBaseEntry rule ) : void | ||
rule | Prolog.KnowledgeBaseEntry | the new rule. |
Résultat | void |
public SetStack ( int frame, int offset, object value ) : void | ||
frame | int | Base address of stack frame |
offset | int | Offset into stack frame |
value | object | New value for stack variable |
Résultat | void |
public StackTrace ( string sourcePath, int lineNumber, string toplevelCommand, bool fullTrace ) : string | ||
sourcePath | string | Path for the source file being loaded. |
lineNumber | int | Current line number in the source file. |
toplevelCommand | string | Original prolog command to output, if stack is empty. |
fullTrace | bool | If true, the complete stack is dumped, otherwise, just the starting frames. |
Résultat | string |
public TraceOutput ( string format, object arg ) : void | ||
format | string | |
arg | object | |
Résultat | void |