question

mark zhen avatar image
0 Likes"
mark zhen asked Jason Lightfoot commented

I want to know how to write the algorithm into the child node

When I was reading some documents, I found a very powerful function. He wrote the ga algorithm into the child node. I want to know how to do it. Is there a simple type for reference? Like this

1685346412891.png

FlexSim 22.0.16
algorithm
1685346412891.png (23.4 KiB)
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Felix Möhlmann avatar image
1 Like"
Felix Möhlmann answered Jason Lightfoot commented

Add a new node to the tree (either through the rightclick menu of the previous or parent node or by using the shortcuts).

Set that node to contain text data (Rightclick -> Node -> Add Text Data). Then toggle the node as FlexScript (Rightclick -> Build -> Toggle Node as FlexScript)

You can then run the code in multiple ways.

  1. treenode code = ...;
  2. // Run the code now
  3. code.evaluate(param1, param2, ...);
  4. nodefunction(code, param1, param2, ...);
  5. // Run the code at a later time
  6. delayednodefunction(code, param1, param2,);
· 19
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.