-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1047 from JuliaSymbolics/myb/state_machine
StateMachineOperators
- Loading branch information
Showing
3 changed files
with
84 additions
and
1 deletion.
There are no files selected for viewing
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
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,25 @@ | ||
function activeState end | ||
function entry end | ||
function ticksInState end | ||
function timeInState end | ||
|
||
for (s, T) in [(:timeInState, :Real), | ||
(:ticksInState, :Integer), | ||
(:entry, :Bool), | ||
(:activeState, :Bool)] | ||
seed = hash(s) | ||
@eval begin | ||
$s(x) = wrap(term($s, x)) | ||
SymbolicUtils.promote_symtype(::typeof($s), _...) = $T | ||
function SymbolicUtils.show_call(io, ::typeof($s), args) | ||
if isempty(args) | ||
print(io, $s, "()") | ||
else | ||
print(io, $s, "(", nameof(only(args)), ")") | ||
end | ||
end | ||
end | ||
if s != :activeState | ||
@eval $s() = wrap(term($s)) | ||
end | ||
end |