Skip to content
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

disabled usage of bounds #25

Merged
merged 1 commit into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions input/fsh/invariants.fsh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,3 @@ Invariant: code-xor-repeat
Description: "Either a code or a repeat structure should be defined, but not both"
Expression: "code.empty() or repeat.empty()"
Severity: #error

Invariant: bounds-or-count
Description: "Either a bounds or a count/countMax should be defined, but not both"
Expression: "bounds.empty() or (count.empty() and countMax.empty())"
Severity: #error
3 changes: 1 addition & 2 deletions input/fsh/rs-timing.fsh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ RuleSet: timing-restrictions
* obeys code-xor-repeat
* code 0..1 // This element can be expressed using the timing.repeat element, which is far more flexible, and we don't want to have double coding
* repeat 0..1 MS
* obeys bounds-or-count
* bounds[x] only Range
* bounds[x] 0..0
Loading