Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR focuses on finalizing the code structure and finishing the last features before we make the 0.1.0 release.
We have made some changes to Rust's code structure, renaming a few classes and modules. This should mainly unify the way we call the inference session, at least on the backend.
AnalysisSession
is nowInferenceSession
,AnalysisState
is nowInferenceState
, theanalysis
module is nowinference
, and so on. We also changed the relevant session names and buttons shown in the UI.Further, we have extended the event for changing variable IDs. Originally, this change did not propagate into relevant static properties, causing inconsistencies. Now, static regulation properties should get updated when one of their variables changes. Further, we have removed the option for users to make changes to IDs of automatically generated static properties, as users should not have access to that (this was already restricted for names before).
Lastly, we made various updates to data, test frameworks and documentation. This includes adding a PDF manual and a short video tutorial, adding documentation to core front-end components, refactoring selenium tests, and restructuring the data folder.