-
At first, thank you for developing this great solver! I'm very pleasure to use this. My question is how to save the result of calculations. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We can save and load a full tree using experimental file I/O functions (the spec is not yet stabilized, so I cannot guarantee future compatibility), but currently we do not provide an easy way to save or extract a subtree. If saving and loading a full tree is sufficient, please see src/file.rs for more information on experimental file I/O functions: basically, the |
Beta Was this translation helpful? Give feedback.
We can save and load a full tree using experimental file I/O functions (the spec is not yet stabilized, so I cannot guarantee future compatibility), but currently we do not provide an easy way to save or extract a subtree. If saving and loading a full tree is sufficient, please see src/file.rs for more information on experimental file I/O functions: basically, the
save_data_to_file
andload_data_from_file
functions will do the job.