Skip to content
Snippets Groups Projects
Commit 6b69e329 authored by hansen's avatar hansen
Browse files

fixed typo

parent 57a30dd7
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,9 @@ public class TLC4B {
private String constantsSetup;
public static void main(String[] args) {
System.setProperty("apple.awt.UIElement", "true"); // avoiding pop up
// windows
System.setProperty("apple.awt.UIElement", "true");
// avoiding pop up window
TLC4B tlc4b = new TLC4B();
try {
tlc4b.process(args);
......
......@@ -26,12 +26,12 @@ RanSub(f, S) == [x \in {y \in DOMAIN f: f[y] \notin S} |-> f[x]]
\* The subtraction on the range of f for set S
Inverse(f) == {<<f[x],x>>: x \in DOMAIN f}
\* The inverser relation of the function f
\* The inverse relation of the function f
Override(f, g) == [x \in (DOMAIN f) \cup DOMAIN g |-> IF x \in DOMAIN g THEN g[x] ELSE f[x]]
\* Overwriting of the function f with the function g
FuncAssign(f, d, e) == Override(f, [x \in {d} |-> e])
FuncAssign(f, d, e) == [f EXCEPT ![d] = e]
\* Overwriting the function f at index d with value e
TotalInjFunc(S, T) == {f \in [S -> T]:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment