-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Increment tag after mode switch rather than set to 1 #459
Conversation
WalkthroughThe changes refine the logic for microstep advancements during mode changes in modal models. By updating the Changes
Sequence Diagram(s)sequenceDiagram
participant ModeChangeHandler
participant Environment
participant WatchdogScheduler
participant Reactions
ModeChangeHandler->>Environment: Get current_tag
Environment-->>ModeChangeHandler: Return current_tag (time, microstep)
ModeChangeHandler->>ModeChangeHandler: Increment microstep by 1
ModeChangeHandler->>Reactions: Process mode changes
Note right of Reactions: Ensures appropriate triggering
WatchdogScheduler->>ModeChangeHandler: Schedule watchdog
ModeChangeHandler->>Environment: Update tag (time, microstep)
Environment-->>ModeChangeHandler: Confirm update
ModeChangeHandler->>Reactions: Handle watchdog reactions
Assessment against linked issues
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- core/modal_models/modes.c (1 hunks)
Additional comments not posted (1)
core/modal_models/modes.c (1)
510-510
: Proper adjustment of microstep value during mode transitions.The modification to increment the
microstep
rather than setting it to a fixed value is a critical fix that addresses the fatal error described in the linked issue. This ensures that themicrostep
progresses correctly and uniquely, which is essential for the correct sequencing of events, especially in tightly scheduled scenarios.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks right to me!
This PR fixes #458. Previously, after a mode transition, the microstep was hardwired to 1, which caused a fatal error after the mode transition when the runtime tried to advance to microstep 1 and found that it was already at microstep 1.
Summary by CodeRabbit