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.

Julie Weller avatar image Julie Weller commented ·

Hi @mark zhen , was Felix Möhlmann's answer helpful? If so, please click the "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.

If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always comment back to reopen your question.

0 Likes 0 ·

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.

treenode code = ...;
// Run the code now
code.evaluate(param1, param2, ...); nodefunction(code, param1, param2, ...); // Run the code at a later time 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.

Arun Kr avatar image Arun Kr commented ·

Adding on to Felix's answer you can also read the tree properties.

2 Likes 2 ·
mark zhen avatar image mark zhen Arun Kr commented ·

@Arun Kr @Felix Möhlmann

What I want to know is a case, and if possible, I hope to provide an example for me to learn, but I currently understand how to add data to the tree nodes, (and the algorithm inside is generated by gpt. If there is a better method, I hope can be provided), if not, you can use this algorithm first (but it cannot be executed smoothly at present)gpt1.fsm

0 Likes 0 ·
gpt1.fsm (27.8 KiB)

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

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