1
+ // Main function to build a graph based on a Directed Acyclic Graph (DAG) representation and a mapping from node values to labels.
1
2
function buildGraph ( dag , nodeValueToLabel ) {
2
- const graph = { } ;
3
- const inDegree = { } ;
3
+ const graph = { } ; // Object to hold the adjacency list representation of the graph.
4
+ const inDegree = { } ; // Object to hold the in-degree count for each node.
4
5
5
- // initialize graph and in-degree
6
+ // Initialize graph and in-degree for each node based on the nodeValueToLabel mapping.
6
7
for ( const nodeLabel in nodeValueToLabel ) {
7
8
graph [ nodeLabel ] = [ ] ;
8
9
inDegree [ nodeLabel ] = 0 ;
9
10
}
10
11
11
- // parse the DAG and build the graph
12
+ // Parse the DAG string, build the graph and calculate in-degrees.
12
13
const lines = dag . split ( '\n' ) ;
13
14
for ( const line of lines ) {
14
15
const parts = line . split ( ':' ) . map ( part => part . trim ( ) ) ;
@@ -17,8 +18,8 @@ function buildGraph(dag, nodeValueToLabel) {
17
18
const dependencies = parts [ 1 ] . split ( ' ' ) . filter ( label => label !== '' ) ;
18
19
for ( const dependency of dependencies ) {
19
20
if ( dependency !== '-1' && nodeValueToLabel [ nodeLabel ] !== undefined && nodeValueToLabel [ dependency ] !== undefined ) {
20
- graph [ nodeLabel ] . push ( dependency ) ; // add dependency to the graph
21
- inDegree [ dependency ] ++ ; // increment in-degree of the dependency
21
+ graph [ nodeLabel ] . push ( dependency ) ; // Add dependency to the node's adjacency list.
22
+ inDegree [ dependency ] ++ ; // Increment in-degree count for the dependency.
22
23
}
23
24
}
24
25
}
@@ -29,20 +30,21 @@ function buildGraph(dag, nodeValueToLabel) {
29
30
return { graph, inDegree } ;
30
31
}
31
32
32
-
33
+ // Processes the solution by validating the sequence of nodes against the graph's dependencies.
33
34
function processSolution ( solution , graph , inDegree , nodeValueToLabel ) {
34
35
console . log ( "processSolution:" , solution ) ;
35
36
console . log ( "processnodeValueToLabel:" , nodeValueToLabel ) ;
36
- const visited = new Set ( ) ;
37
+ const visited = new Set ( ) ; // Set to track visited nodes.
37
38
39
+ // Process each node in the solution, ensuring all dependencies are met.
38
40
for ( const nodeText of solution ) {
39
41
const nodeLabel = Object . keys ( nodeValueToLabel ) . find (
40
- ( label ) => nodeValueToLabel [ label ] === nodeText
42
+ label => nodeValueToLabel [ label ] === nodeText
41
43
) ;
42
44
43
45
if ( nodeLabel === undefined ) {
44
46
console . log ( "Skipping node not found in nodeValueToLabel:" , nodeText ) ;
45
- continue ; // jump to the next node
47
+ continue ; // Skip if node is not found in mapping.
46
48
}
47
49
48
50
console . log ( 'Current label:' , nodeLabel ) ;
@@ -51,28 +53,26 @@ function processSolution(solution, graph, inDegree, nodeValueToLabel) {
51
53
52
54
visited . add ( nodeLabel ) ;
53
55
54
- // check if the node has dependencies
56
+ // Check if all dependencies of the current node have been visited.
55
57
for ( const dependencyLabel of graph [ nodeLabel ] ) {
56
58
if ( ! visited . has ( dependencyLabel ) ) {
57
59
console . error ( "Dependency not satisfied:" , nodeText , "depends on" , nodeValueToLabel [ dependencyLabel ] ) ;
58
- return false ;
60
+ return false ; // Dependency check failed.
59
61
}
60
62
}
61
63
}
62
64
63
- // check if all nodes were visited
65
+ // Ensure all nodes were visited.
64
66
if ( visited . size !== Object . keys ( nodeValueToLabel ) . length ) {
65
67
console . error ( "Not all nodes in nodeValueToLabel were visited." ) ;
66
68
return false ;
67
69
}
68
70
69
71
console . log ( 'Visited nodes:' , Array . from ( visited ) ) ;
70
- return true ;
72
+ return true ; // All checks passed.
71
73
}
72
74
73
-
74
-
75
-
75
+ // High-level function to process the DAG and the solution together.
76
76
function processDAG ( dag , solution , nodeValueToLabel ) {
77
77
console . log ( "DAG:" , dag ) ;
78
78
console . log ( "Node value to label mapping:" , nodeValueToLabel ) ;
@@ -81,17 +81,18 @@ function processDAG(dag, solution, nodeValueToLabel) {
81
81
return result ;
82
82
}
83
83
84
+ // Extracts and maps the solution to the corresponding node labels.
84
85
function extractCode ( solution , nodeValueToLabel ) {
85
86
const code = [ ] ;
86
87
const newNodeValueToLabel = { } ;
87
88
for ( const nodeText of solution ) {
88
89
const nodeLabel = Object . keys ( nodeValueToLabel ) . find (
89
- ( key ) => nodeValueToLabel [ key ] === nodeText
90
+ key => nodeValueToLabel [ key ] === nodeText
90
91
) ;
91
92
if ( nodeLabel !== undefined ) {
92
- code . push ( nodeText ) ;
93
- newNodeValueToLabel [ nodeLabel ] = nodeText ;
93
+ code . push ( nodeText ) ; // Collect the node text for the final code array.
94
+ newNodeValueToLabel [ nodeLabel ] = nodeText ; // Map labels to node texts.
94
95
}
95
96
}
96
- return { code, newNodeValueToLabel } ;
97
- }
97
+ return { code, newNodeValueToLabel } ; // Return the processed code and updated mapping.
98
+ }
0 commit comments