Commit a4f68e74 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 50ab6077
...@@ -15,7 +15,8 @@ ASSUME /\ root \in Nodes ...@@ -15,7 +15,8 @@ ASSUME /\ root \in Nodes
\* Connected is true if two nodes i and j are interconnected by some path. \* Connected is true if two nodes i and j are interconnected by some path.
RECURSIVE _Connected(_,_,_) RECURSIVE _Connected(_,_,_)
_Connected(i,j,Intra) == _Connected(i,j,Intra) ==
CASE {i,j} \in Edges -> TRUE CASE i = j -> TRUE
[] {i,j} \in Edges -> TRUE
[] Intra = {} -> FALSE [] Intra = {} -> FALSE
[] OTHER -> \E x \in Intra : ({i,x} \in Edges) /\ _Connected(x,j, Intra\{x}) [] OTHER -> \E x \in Intra : ({i,x} \in Edges) /\ _Connected(x,j, Intra\{x})
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<stringAttribute key="distributedNetworkInterface" value="192.168.122.1"/> <stringAttribute key="distributedNetworkInterface" value="192.168.122.1"/>
<intAttribute key="distributedNodesCount" value="1"/> <intAttribute key="distributedNodesCount" value="1"/>
<stringAttribute key="distributedTLC" value="off"/> <stringAttribute key="distributedTLC" value="off"/>
<intAttribute key="fpIndex" value="72"/> <intAttribute key="fpIndex" value="105"/>
<intAttribute key="maxHeapSize" value="25"/> <intAttribute key="maxHeapSize" value="25"/>
<stringAttribute key="modelBehaviorInit" value=""/> <stringAttribute key="modelBehaviorInit" value=""/>
<stringAttribute key="modelBehaviorNext" value=""/> <stringAttribute key="modelBehaviorNext" value=""/>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment