feat: added a behavior program reduction algorithm

This commit is contained in:
Gerla, J. (Justin)
2025-11-05 15:21:59 +00:00
parent 52b839ae51
commit c4845c6738
9 changed files with 1401 additions and 73 deletions

View File

@@ -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',
}
];