@teachinglab/omd 0.1.4 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/canvas/tools/EraserTool.js +1 -1
  2. package/canvas/tools/PencilTool.js +1 -1
  3. package/canvas/tools/SelectTool.js +1 -1
  4. package/docs/api/configuration-options.md +198 -104
  5. package/docs/api/eventManager.md +83 -68
  6. package/docs/api/focusFrameManager.md +145 -150
  7. package/docs/api/index.md +106 -91
  8. package/docs/api/main.md +63 -58
  9. package/docs/api/omdBinaryExpressionNode.md +86 -227
  10. package/docs/api/omdCanvas.md +84 -142
  11. package/docs/api/omdConfigManager.md +113 -192
  12. package/docs/api/omdConstantNode.md +53 -117
  13. package/docs/api/omdDisplay.md +87 -121
  14. package/docs/api/omdEquationNode.md +174 -161
  15. package/docs/api/omdEquationSequenceNode.md +259 -301
  16. package/docs/api/omdEquationStack.md +157 -103
  17. package/docs/api/omdFunctionNode.md +83 -141
  18. package/docs/api/omdGroupNode.md +79 -182
  19. package/docs/api/omdHelpers.md +88 -96
  20. package/docs/api/omdLeafNode.md +86 -163
  21. package/docs/api/omdNode.md +202 -101
  22. package/docs/api/omdOperationDisplayNode.md +118 -139
  23. package/docs/api/omdOperatorNode.md +92 -127
  24. package/docs/api/omdParenthesisNode.md +134 -122
  25. package/docs/api/omdPopup.md +192 -117
  26. package/docs/api/omdPowerNode.md +132 -127
  27. package/docs/api/omdRationalNode.md +145 -128
  28. package/docs/api/omdSimplification.md +79 -110
  29. package/docs/api/omdSqrtNode.md +144 -79
  30. package/docs/api/omdStepVisualizer.md +147 -115
  31. package/docs/api/omdStepVisualizerHighlighting.md +66 -61
  32. package/docs/api/omdStepVisualizerInteractiveSteps.md +109 -129
  33. package/docs/api/omdStepVisualizerLayout.md +71 -60
  34. package/docs/api/omdStepVisualizerTextBoxes.md +77 -68
  35. package/docs/api/omdToolbar.md +131 -102
  36. package/docs/api/omdTranscriptionService.md +96 -76
  37. package/docs/api/omdTreeDiff.md +170 -134
  38. package/docs/api/omdUnaryExpressionNode.md +137 -174
  39. package/docs/api/omdUtilities.md +83 -70
  40. package/docs/api/omdVariableNode.md +123 -148
  41. package/index.js +2 -2
  42. package/omd/core/index.js +9 -0
  43. package/omd/nodes/omdEquationSequenceNode.js +15 -0
  44. package/omd/utils/aiNextEquationStep.js +106 -0
  45. package/package.json +1 -1
  46. package/src/omdBalanceHanger.js +1 -1
  47. package/src/omdCoordinatePlane.js +1 -1
@@ -1,163 +1,86 @@
1
-
2
- Represents a leaf in the AST tree, such as an operator, constant, variable, or grouping symbol. This is a base class for other specific leaf node types.
3
-
4
- ## Class: `omdLeafNode extends omdNode`
5
-
6
- ```javascript
7
- import { omdLeafNode } from './omd/nodes/omdLeafNode.js';
8
- ```
9
-
10
- ### Constructor
11
-
12
- ```javascript
13
- new omdLeafNode(nodeData)
14
- ```
15
-
16
- **Parameters:**
17
-
18
- **Description:**
19
- Creates a new leaf node. This is an abstract base class - use concrete subclasses instead.
20
-
21
- ### Methods
22
-
23
- Inherits all methods from [omdNode](./omdNode.md), plus:
24
-
25
- #### `createTextElement(text)`
26
- Creates and positions the text element for the node.
27
- - Text anchor set to 'middle'
28
- - Dominant baseline set to 'middle'
29
- - Added as a child of this node
30
-
31
-
32
- #### `clone()`
33
- Creates a clone of the leaf node.
34
- - Same constructor as original
35
- - Original node's ID added to provenance array
36
-
37
-
38
- #### `updateTextElement(text)`
39
- Updates the text content.
40
-
41
-
42
- #### `computeDimensions()`
43
- Calculates node dimensions based on text content.
44
-
45
-
46
- #### `updateLayout()`
47
- Updates the position of the node.
48
-
49
-
50
- #### `updateTextPosition()`
51
- Internal method to center text in node.
52
-
53
- ### Examples
54
-
55
- ```javascript
56
- // This is an abstract class - use concrete subclasses
57
- const constant = new omdConstantNode(5);
58
- const variable = new omdVariableNode('x');
59
- const operator = new omdOperatorNode('+');
60
-
61
- // All leaf nodes handle text rendering
62
- constant.createTextElement('5');
63
- constant.computeDimensions();
64
- constant.updateLayout();
65
- ```
66
-
67
- ### See Also
68
-
69
- Concrete implementations:
70
-
71
- Base class:
72
- # omdLeafNode
73
-
74
- Represents a leaf in the AST tree, such as an operator, constant, variable, or grouping symbol. This is a base class for other specific leaf node types.
75
-
76
- ## Class: `omdLeafNode extends omdNode`
77
-
78
- ```javascript
79
- import { omdLeafNode } from './omd/nodes/omdLeafNode.js';
80
- ```
81
-
82
- ### Constructor
83
-
84
- ```javascript
85
- new omdLeafNode(nodeData)
86
- ```
87
-
88
- **Parameters:**
89
- - `nodeData` {Object} - The AST node data
90
-
91
- **Description:**
92
- Creates a new leaf node. This is an abstract base class—use concrete subclasses instead.
93
-
94
- ### Methods
95
-
96
- Inherits all methods from [omdNode](./omdNode.md), plus:
97
-
98
- #### `createTextElement(text)`
99
- Creates and positions the text element for the node.
100
- - `text` {string|number} - The text content to display
101
- - **Returns:** jsvgTextLine - The created text element with:
102
- - Text anchor set to 'middle'
103
- - Dominant baseline set to 'middle'
104
- - Added as a child of this node
105
-
106
- ---
107
-
108
- #### `clone()`
109
- Creates a clone of the leaf node.
110
- - **Returns:** omdLeafNode - A new instance with:
111
- - Same constructor as original
112
- - Original node's ID added to provenance array
113
-
114
- ---
115
-
116
- #### `updateTextElement(text)`
117
- Updates the text content.
118
- - `text` {string|number} - The new text content
119
-
120
- ---
121
-
122
- #### `computeDimensions()`
123
- Calculates node dimensions based on text content.
124
- - Gets font size from parent
125
- - Updates text element font size
126
- - Sets width and height based on text bounds
127
-
128
- ---
129
-
130
- #### `updateLayout()`
131
- Updates the position of the node.
132
- - Calls updateTextPosition()
133
-
134
- ---
135
-
136
- #### `updateTextPosition()`
137
- Internal method to center text in node.
138
- - Sets text position to (width/2, height/2)
139
-
140
- ### Example
141
-
142
- ```javascript
143
- // This is an abstract class—use concrete subclasses
144
- const constant = new omdConstantNode(5);
145
- const variable = new omdVariableNode('x');
146
- const operator = new omdOperatorNode('+');
147
-
148
- // All leaf nodes handle text rendering
149
- constant.createTextElement('5');
150
- constant.computeDimensions();
151
- constant.updateLayout();
152
- ```
153
-
154
- ### See Also
155
-
156
- Concrete implementations:
157
- - [omdConstantNode](./omdConstantNode.md) - For numeric values
158
- - [omdVariableNode](./omdVariableNode.md) - For variables
159
- - [omdOperatorNode](./omdOperatorNode.md) - For operators
160
- - [omdGroupNode](./omdGroupNode.md) - For grouping symbols
161
-
162
- Base class:
163
- - [omdNode](./omdNode.md) - Parent class
1
+ # omdLeafNode
2
+
3
+ Represents a base class for all leaf nodes in the OMD expression tree, such as constants, variables, operators, and grouping symbols. This class provides fundamental functionalities for handling text content, computing dimensions, and managing layout for single-element nodes.
4
+
5
+ ## Class Definition
6
+
7
+ ```javascript
8
+ export class omdLeafNode extends omdNode
9
+ ```
10
+
11
+ ## Constructor
12
+
13
+ ### `new omdLeafNode(astNodeData)`
14
+
15
+ Creates a new `omdLeafNode` instance. This is an abstract base class; you should use its concrete subclasses (e.g., `omdConstantNode`, `omdVariableNode`) instead.
16
+
17
+ - **`astNodeData`** (`object`): The abstract syntax tree (AST) node data from a parser like math.js, containing information relevant to the leaf node.
18
+
19
+ ## Public Properties
20
+
21
+ - **`textElement`** (`jsvgTextLine`): The internal `jsvgTextLine` instance that renders the text content of the leaf node.
22
+
23
+ ## Public Methods
24
+
25
+ ### `clone()`
26
+
27
+ Creates a deep clone of the leaf node. This method uses the original node's constructor to create a new instance, ensuring that the correct subclass is instantiated. The clone's `provenance` array is updated to include the original node's ID.
28
+
29
+ - **Returns**: `omdLeafNode` - A new instance of the specific leaf node subclass.
30
+
31
+ ### `updateTextElement(text)`
32
+
33
+ Updates the text content displayed by the node's `textElement`. After updating the text, you typically need to call `computeDimensions()` and `updateLayout()` to reflect the change visually.
34
+
35
+ - **`text`** (`string` | `number`): The new text content to display.
36
+
37
+ ### `computeDimensions()`
38
+
39
+ Calculates the dimensions (width and height) of the node based on its text content and current font size. It uses the `getTextBounds` utility function to accurately measure the text. This method also updates the font size of the internal `textElement`.
40
+
41
+ - **Overrides**: `omdNode.computeDimensions()`.
42
+
43
+ ### `updateLayout()`
44
+
45
+ Updates the position of the node's internal text element to center it within the node's bounding box. This method primarily calls the internal `updateTextPosition()`.
46
+
47
+ - **Overrides**: `omdNode.updateLayout()`.
48
+
49
+ ## Internal Methods
50
+
51
+ - **`createTextElement(text)`**: Creates and initializes a `jsvgTextLine` element with the given text. It sets the text anchor to `'middle'` and dominant baseline to `'middle'` for proper centering, and adds it as a child of this node.
52
+ - **Returns**: `jsvgTextLine` - The created text element.
53
+ - **`updateTextPosition()`**: Positions the `textElement` at the center of the node's calculated width and height.
54
+
55
+ ## Example
56
+
57
+ ```javascript
58
+ // omdLeafNode is an abstract class—use concrete subclasses
59
+ import { omdConstantNode } from './omdConstantNode.js';
60
+ import { omdVariableNode } from './omdVariableNode.js';
61
+ import { omdOperatorNode } from './omdOperatorNode.js';
62
+
63
+ const constant = new omdConstantNode({ value: 5 });
64
+ const variable = new omdVariableNode({ name: 'x' });
65
+ const operator = new omdOperatorNode({ op: '+' });
66
+
67
+ // All leaf nodes handle text rendering and layout similarly
68
+ constant.initialize(); // Computes dimensions and layout
69
+ variable.initialize();
70
+ operator.initialize();
71
+
72
+ // You can then add these to an omdDisplay or other container
73
+ ```
74
+
75
+ ## See Also
76
+
77
+ Concrete implementations:
78
+
79
+ - [`omdConstantNode`](./omdConstantNode.md) - For numeric values.
80
+ - [`omdVariableNode`](./omdVariableNode.md) - For variables.
81
+ - [`omdOperatorNode`](./omdOperatorNode.md) - For operators.
82
+ - [`omdGroupNode`](./omdGroupNode.md) - For grouping symbols.
83
+
84
+ Base class:
85
+
86
+ - [`omdNode`](./omdNode.md) - The fundamental base class for all OMD nodes.
@@ -1,101 +1,202 @@
1
- # omdNode
2
-
3
- The abstract base class for all nodes in the mathematical expression tree. It provides the core functionality for tree structure (parent-child relationships), layout calculations, rendering, and provenance tracking.
4
-
5
- ## Class: `omdNode extends omdMetaExpression`
6
-
7
- This class is not meant to be instantiated directly. Instead, you should use one of its concrete subclasses (e.g., `omdConstantNode`, `omdBinaryExpressionNode`).
8
-
9
- ### Key Concepts
10
-
11
- - **AST (Abstract Syntax Tree):** Each `omdNode` is created from a node in the math.js AST.
12
- - **Tree Structure:** Nodes are organized in a tree with `parent` and `childList` properties.
13
- - **Layout:** The `computeDimensions()` and `updateLayout()` methods are responsible for determining the size and position of a node and its children.
14
- - **Provenance:** The `provenance` array on each node tracks its history. When a node is cloned (e.g., during a simplification step), the new node's provenance array will contain the ID of the original node, creating a link back to its predecessor.
15
-
16
- ### Properties
17
-
18
- #### `id`
19
- - **Type:** `number`
20
- - **Description:** A unique identifier for the node instance.
21
-
22
- #### `parent`
23
- - **Type:** `omdNode` | `null`
24
- - **Description:** A reference to the parent node in the tree.
25
-
26
- #### `astNodeData`
27
- - **Type:** `Object`
28
- - **Description:** The original math.js AST node from which this `omdNode` was created.
29
-
30
- #### `provenance`
31
- - **Type:** `Array<number>`
32
- - **Description:** An array of IDs from which this node was derived, forming a historical chain.
33
-
34
- #### `argumentNodeList`
35
- - **Type:** `Object`
36
- - **Description:** A map of the node's meaningful children (e.g., `{ left: omdNode, right: omdNode }` for a binary expression).
37
-
38
- ### Core Methods
39
-
40
- These methods form the essential public API for interacting with nodes.
41
-
42
- #### `initialize()`
43
-
44
- Initializes the node by recursively computing its dimensions and updating its layout. This should be called after a node and its children have been constructed.
45
-
46
- ---
47
-
48
- #### `clone()`
49
-
50
- Creates a deep, structural clone of the node. The new node will have a new `id`, and its `provenance` will link back to the original node's `id`.
51
-
52
- - **Returns:** `omdNode` - A new instance of the same type as the original.
53
-
54
- ---
55
-
56
- #### `replaceWith(newNode, options)`
57
-
58
- Replaces this node with a new node in the tree, updating all parent and child references and re-rendering the SVG.
59
-
60
- - **Parameters:**
61
- - `newNode` {omdNode} - The node to substitute in.
62
- - `options` {Object} (optional) - e.g., `{ updateLayout: true }`.
63
- - **Returns:** `boolean` - `true` if the replacement was successful.
64
-
65
- ---
66
-
67
- #### `simplify()`
68
-
69
- Asynchronously attempts to simplify the expression rooted at this node by invoking the central simplification engine.
70
-
71
- - **Returns:** `Promise<Object>` - A promise that resolves to an object like `{ success, foldedCount, newRoot, message }`.
72
-
73
- ---
74
-
75
- #### `toMathJSNode()`
76
-
77
- Converts the `omdNode` and its children back into a math.js-compatible AST object. This must be implemented by all subclasses.
78
-
79
- - **Returns:** `Object` - The math.js AST node.
80
-
81
- ---
82
-
83
- #### `toString()`
84
-
85
- Converts the node into a human-readable string representation.
86
-
87
- - **Returns:** `string`.
88
-
89
- ### Layout and Rendering Methods
90
-
91
- These methods are primarily for internal use and are overridden by subclasses to define specific layout and rendering logic.
92
-
93
- - `computeDimensions()`: Calculates the `width` and `height` of the node.
94
- - `updateLayout()`: Positions the node's children relative to itself.
95
- - `getAlignmentBaseline()`: Returns the vertical y-coordinate used to align this node with its siblings.
96
-
97
- ### See Also
98
-
99
- - [`omdLeafNode`](./omdLeafNode.md) - The base class for nodes with no children (constants, variables).
100
- - [`omdBinaryExpressionNode`](./omdBinaryExpressionNode.md) - For nodes with two children (e.g., addition, subtraction).
101
- - [`omdFunctionNode`](./omdFunctionNode.md) - For function calls.
1
+ # omdNode
2
+
3
+ The abstract base class for all nodes in the mathematical expression tree. It provides the core functionality for tree structure (parent-child relationships), layout calculations, rendering, and provenance tracking. All specific mathematical elements (constants, variables, operators, functions, equations) extend this class.
4
+
5
+ ## Class Definition
6
+
7
+ ```javascript
8
+ export class omdNode extends omdMetaExpression
9
+ ```
10
+
11
+ This class is not meant to be instantiated directly. Instead, you should use one of its concrete subclasses (e.g., `omdConstantNode`, `omdBinaryExpressionNode`).
12
+
13
+ ### Key Concepts
14
+
15
+ - **AST (Abstract Syntax Tree):** Each `omdNode` is typically created from a node in the math.js AST, providing a structured representation of the mathematical expression.
16
+ - **Tree Structure:** Nodes are organized in a hierarchical tree with `parent` and `childList` properties, enabling traversal and manipulation of the expression.
17
+ - **Layout:** The `computeDimensions()` and `updateLayout()` methods are fundamental for determining the size and position of a node and its children, ensuring correct visual rendering.
18
+ - **Provenance:** The `provenance` array on each node tracks its history. When a node is cloned (e.g., during a simplification step), the new node's provenance array will contain the ID of the original node, creating a traceable link back to its predecessor. This is crucial for features like step-by-step explanations and highlighting.
19
+
20
+ ## Public Properties
21
+
22
+ - **`id`** (`number`): A unique identifier for each node instance, automatically assigned upon creation.
23
+ - **`type`** (`string`): A string indicating the specific type of the OMD node (e.g., `"omdConstantNode"`, `"omdBinaryExpressionNode"`).
24
+ - **`parent`** (`omdNode` | `null`): A reference to the parent node in the expression tree. `null` for the root node.
25
+ - **`astNodeData`** (`object`): The original math.js AST node from which this `omdNode` was created. This preserves the raw parsed data.
26
+ - **`provenance`** (`Array<number>`): An array of IDs from which this node was derived. This forms a historical chain, linking a node back through transformations or simplifications.
27
+ - **`argumentNodeList`** (`object`): A map (or object) containing references to the node's structurally significant children (e.g., `left`, `right` for binary expressions, `args` for functions). This is used for recursive operations and provenance tracking.
28
+ - **`isExplainHighlighted`** (`boolean`): A flag indicating if the node is currently highlighted for explanation purposes. This acts as a lock, preventing other highlights from overriding it.
29
+ - **`x`** (`number`): The x-coordinate of the node's top-left corner relative to its parent.
30
+ - **`y`** (`number`): The y-coordinate of the node's top-left corner relative to its parent.
31
+ - **`width`** (`number`): The calculated width of the node's bounding box.
32
+ - **`height`** (`number`): The calculated height of the node's bounding box.
33
+ - **`fontSize`** (`number`): The base font size applied to this node and its children.
34
+ - **`svgElement`** (`SVGElement`): The root SVG element that represents this node visually.
35
+
36
+ ## Public Methods
37
+
38
+ ### `initialize()`
39
+
40
+ Initializes the node by recursively computing its dimensions and updating its layout. This method should be called after a node and its children have been fully constructed to ensure proper sizing and positioning.
41
+
42
+ ### `clone()`
43
+
44
+ Creates a deep, structural clone of the node. The new node will have a new `id`, and its `provenance` will link back to the original node's `id`, establishing a historical connection.
45
+
46
+ - **Returns**: `omdNode` - A new instance of the same type as the original, with all children also cloned.
47
+
48
+ ### `replaceWith(newNode, options)`
49
+
50
+ Replaces this node with a `newNode` in the expression tree. This updates all parent and child references and triggers a re-layout and re-rendering of the affected parts of the SVG.
51
+
52
+ - **`newNode`** (`omdNode`): The node to substitute in.
53
+ - **`options`** (`object`, optional): Configuration for the replacement.
54
+ - `updateLayout` (`boolean`): If `true` (default), the layout of the entire tree will be recalculated upwards from the point of replacement.
55
+ - **Returns**: `boolean` - `true` if the replacement was successful.
56
+
57
+ ### `simplify()`
58
+
59
+ Asynchronously attempts to simplify the expression rooted at this node by invoking the central simplification engine (`simplifyStep`).
60
+
61
+ - **Returns**: `Promise<object>` - A promise that resolves to an object like `{ success, foldedCount, newRoot, message }`. Throws an error if the `simplifyStep` function is not set.
62
+
63
+ ### `toMathJSNode()`
64
+
65
+ Converts the `omdNode` and its children back into a math.js-compatible AST object. This method must be implemented by all concrete subclasses.
66
+
67
+ - **Returns**: `object` - The math.js AST node.
68
+ - **Throws**: `Error` if not implemented by the subclass.
69
+
70
+ ### `toString()`
71
+
72
+ Converts the node into a human-readable string representation. It typically uses the `toMathJSNode()` method internally to leverage math.js's string conversion capabilities.
73
+
74
+ - **Returns**: `string`.
75
+
76
+ ### `render()`
77
+
78
+ Generates or retrieves the SVG representation of the node. This method calls `renderSelf()` if the SVG element has not been created yet.
79
+
80
+ - **Returns**: `SVGElement` - The root SVG element representing this node.
81
+
82
+ ### `renderSelf()`
83
+
84
+ Abstract method that must be implemented by subclasses. This method is responsible for creating the specific SVG elements and structure for the node's visual representation.
85
+
86
+ - **Returns**: `SVGElement` - The SVG element created for this node.
87
+ - **Throws**: `Error` if not implemented by the subclass.
88
+
89
+ ### `setFontSize(size)`
90
+
91
+ Sets the base font size for this node and recursively propagates the new font size to all its children.
92
+
93
+ - **`size`** (`number`): The font size in pixels.
94
+
95
+ ### `moveTo(x, y)`
96
+
97
+ Moves the node to a new absolute position (`x`, `y`) relative to its parent. It also recursively moves all children by the same delta.
98
+
99
+ - **`x`** (`number`): The new x-coordinate.
100
+ - **`y`** (`number`): The new y-coordinate.
101
+
102
+ ### `show()`
103
+
104
+ Makes the node and its SVG representation visible.
105
+
106
+ ### `hide()`
107
+
108
+ Hides the node and its SVG representation.
109
+
110
+ ### `getDepth()`
111
+
112
+ Calculates the depth of the node in the expression tree (0 for the root node).
113
+
114
+ - **Returns**: `number` - The depth of the node.
115
+
116
+ ### `findParentOfType(type)`
117
+
118
+ Traverses up the tree to find the nearest parent node of a specific type.
119
+
120
+ - **`type`** (`string`): The `type` property of the node to search for (e.g., `"omdEquationNode"`).
121
+ - **Returns**: `omdNode` | `null` - The found parent node or `null` if not found.
122
+
123
+ ### `validateProvenance(nodeMap)`
124
+
125
+ Validates the provenance integrity of this node and all its descendants. It checks for duplicate IDs, invalid references, and self-references in the `provenance` arrays.
126
+
127
+ - **`nodeMap`** (`Map`, optional): An optional map of all known nodes in the system, used for cross-referencing provenance IDs.
128
+ - **Returns**: `Array<object>` - An array of validation issues found, each describing the type of issue, the node involved, and relevant IDs.
129
+
130
+ ### `setHighlight(highlightOn, color)`
131
+
132
+ Applies or removes a highlight from the node's background. If `isExplainHighlighted` is `true`, this method will not override the existing explanation highlight.
133
+
134
+ - **`highlightOn`** (`boolean`): `true` to highlight, `false` to remove.
135
+ - **`color`** (`string`, optional): The color of the highlight. Defaults to `omdColor.highlightColor`.
136
+
137
+ ### `lowlight()`
138
+
139
+ Reduces the opacity of the node's background. Similar to `setHighlight`, it respects the `isExplainHighlighted` lock.
140
+
141
+ ### `setFillColor(color)`
142
+
143
+ Sets the fill color of the node's background rectangle. This method also respects the `isExplainHighlighted` lock.
144
+
145
+ ## Abstract Methods (to be implemented by subclasses)
146
+
147
+ - **`computeDimensions()`**: Calculates the `width` and `height` of the node based on its content and children. Provides a default empty implementation.
148
+ - **`updateLayout()`**: Positions the node's children relative to itself. Provides a default empty implementation.
149
+ - **`getAlignmentBaseline()`**: Returns the vertical y-coordinate within the node's bounding box that should be used for alignment with its siblings. By default, this is the vertical center (`this.height / 2`).
150
+ - **`isConstant()`**: Determines if the node represents a constant numerical value. Returns `false` by default.
151
+ - **`getValue()`**: Retrieves the numerical value of a constant node. Throws an error if the node is not constant.
152
+ - **`getRationalValue()`**: Retrieves the rational value of a constant node as a numerator/denominator pair. Throws an error if the node is not a constant rational expression.
153
+
154
+ ## Internal Methods
155
+
156
+ - **`_syncProvenanceFrom(originalNode)`**: Recursively walks a cloned node tree and sets the provenance of each node to point back to the corresponding node in the original tree. This is a crucial part of maintaining the provenance chain during cloning operations.
157
+ - **`replaceNodeInParent(newNode)`**: Helper method used by `replaceWith` to update specific references to this node within its parent's `argumentNodeList` and other properties.
158
+ - **`updateSvg(newNode)`**: Helper method used by `replaceWith` to perform the actual DOM manipulation (replacing SVG elements).
159
+ - **`updateLayoutUpwards()`**: Traverses up the tree from this node's parent to re-calculate dimensions and layouts for all ancestors, ensuring the entire affected tree is correctly rendered after a change.
160
+ - **`_validateStepsProvenance(issues)`**: Helper for `validateProvenance` to check provenance within steps.
161
+ - **`_findOrphanedNodes(issues)`**: Helper for `validateProvenance` to find nodes in the `nodeMap` that are no longer part of the active tree.
162
+ - **`_collectAllProvenanceIds(newNodeMap)`**: Collects all provenance IDs from nodes in a given map.
163
+ - **`_collectNodeProvenanceIds(node, referencedIds, processedNodes)`**: Recursively collects provenance IDs for a single node.
164
+ - **`_preserveReferencedNodes(referencedIds, newNodeMap)`**: Ensures that historical nodes referenced in provenance chains are kept in the `nodeMap`.
165
+ - **`_preserveNodeAndContext(id, newNodeMap, processedIds)`**: Preserves a historical node and its relevant parent/sibling context.
166
+ - **`_preserveParentContext(node, newNodeMap)`**: Preserves the parent nodes of a historical node.
167
+ - **`_preserveSiblingContext(node, newNodeMap)`**: Preserves the sibling nodes of a historical node.
168
+
169
+ ## Example
170
+
171
+ ```javascript
172
+ // omdNode is an abstract class - use concrete subclasses
173
+ import { omdConstantNode } from './omdConstantNode.js';
174
+ import { omdBinaryExpressionNode } from './omdBinaryExpressionNode.js';
175
+ import { omdDisplay } from '../display/omdDisplay.js';
176
+
177
+ // Create a simple expression tree
178
+ const two = new omdConstantNode({ value: 2 });
179
+ const x = new omdVariableNode({ name: 'x' });
180
+ const twoX = new omdBinaryExpressionNode({
181
+ type: 'OperatorNode', op: '*', fn: 'multiply',
182
+ args: [two.astNodeData, x.astNodeData],
183
+ implicit: true
184
+ });
185
+
186
+ // Initialize the root node (this will recursively initialize children)
187
+ twoX.initialize();
188
+
189
+ // Render it using omdDisplay
190
+ const container = document.getElementById('math-container');
191
+ const display = new omdDisplay(container);
192
+ display.render(twoX);
193
+
194
+ console.log(twoX.toString()); // Output: 2x
195
+ ```
196
+
197
+ ## See Also
198
+
199
+ - [`omdLeafNode`](./omdLeafNode.md) - The base class for nodes with no children (constants, variables, operators).
200
+ - [`omdBinaryExpressionNode`](./omdBinaryExpressionNode.md) - For nodes with two children (e.g., addition, subtraction, multiplication).
201
+ - [`omdFunctionNode`](./omdFunctionNode.md) - For function calls (e.g., `sin(x)`).
202
+ - [`omdEquationNode`](./omdEquationNode.md) - For representing mathematical equations.