timed-automata-analyzer 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
+
* Checks all locations of the input TA for reachability and returns all unreachable locations. The
|
|
5
|
+
* result will be empty if all locations are reachable.
|
|
6
|
+
*
|
|
7
|
+
* This function will throw an error if one or more validation checks fail. The following
|
|
8
|
+
* properties will be validated:
|
|
9
|
+
* <ul>
|
|
10
|
+
* <li>There exists exactly one initial location.</li>
|
|
11
|
+
* <li>The set of locations is non-empty.</li>
|
|
12
|
+
* <li>All invariants are downward-closed.</li>
|
|
13
|
+
* <li>The highest constant used in any clock constraint is not greater than the highest allowed
|
|
14
|
+
* value (536870909).</li>
|
|
15
|
+
* <li>All locations names are unique.</li>
|
|
16
|
+
* <li>All clock names are unique.</li>
|
|
17
|
+
* <li>All clocks used in clock constraints are also contained in the set of clocks.</li>
|
|
18
|
+
* <li>All location names used as source and target of switches are also contained in the set of
|
|
19
|
+
* locations.</li>
|
|
20
|
+
* </ul>
|
|
4
21
|
* @param {TimedAutomaton} ta
|
|
5
22
|
* @returns {(string)[]}
|
|
6
23
|
*/
|
|
@@ -151,6 +151,23 @@ function getArrayJsValueFromWasm0(ptr, len) {
|
|
|
151
151
|
return result;
|
|
152
152
|
}
|
|
153
153
|
/**
|
|
154
|
+
* Checks all locations of the input TA for reachability and returns all unreachable locations. The
|
|
155
|
+
* result will be empty if all locations are reachable.
|
|
156
|
+
*
|
|
157
|
+
* This function will throw an error if one or more validation checks fail. The following
|
|
158
|
+
* properties will be validated:
|
|
159
|
+
* <ul>
|
|
160
|
+
* <li>There exists exactly one initial location.</li>
|
|
161
|
+
* <li>The set of locations is non-empty.</li>
|
|
162
|
+
* <li>All invariants are downward-closed.</li>
|
|
163
|
+
* <li>The highest constant used in any clock constraint is not greater than the highest allowed
|
|
164
|
+
* value (536870909).</li>
|
|
165
|
+
* <li>All locations names are unique.</li>
|
|
166
|
+
* <li>All clock names are unique.</li>
|
|
167
|
+
* <li>All clocks used in clock constraints are also contained in the set of clocks.</li>
|
|
168
|
+
* <li>All location names used as source and target of switches are also contained in the set of
|
|
169
|
+
* locations.</li>
|
|
170
|
+
* </ul>
|
|
154
171
|
* @param {TimedAutomaton} ta
|
|
155
172
|
* @returns {(string)[]}
|
|
156
173
|
*/
|
|
Binary file
|