feat: added a behavior program reduction algorithm
This commit is contained in:
@@ -20,7 +20,7 @@ const initialNodes = [
|
||||
data: {label: 'start'}
|
||||
},
|
||||
{
|
||||
id: 'genericPhase',
|
||||
id: 'phase-1',
|
||||
type: 'phase',
|
||||
position: {x: 0, y: 150},
|
||||
data: {label: 'Generic Phase', number: 1},
|
||||
@@ -38,9 +38,14 @@ const initialNodes = [
|
||||
*/
|
||||
const initialEdges = [
|
||||
{
|
||||
id: 'start-end',
|
||||
id: 'start-phase-1',
|
||||
source: 'start',
|
||||
target: 'end'
|
||||
target: 'phase-1',
|
||||
},
|
||||
{
|
||||
id: 'phase-1-end',
|
||||
source: 'phase-1',
|
||||
target: 'end',
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user