Skip to content
Open
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
1 change: 1 addition & 0 deletions tests/recipes/trig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ pub fn trig_rules() -> Ruleset<Trig> {
.clone()
.plug("op", &t_ops)
.plug("v", &consts)
.append(Workload::new(["0", "1"]))
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe some of the other workloads added [-2, -1, 0, 1, 2]. You could add those to be consistent?

.filter(valid_trig);

let simple_terms = app.clone().plug("op", &t_ops).plug(
Expand Down
Loading