Files
powdr/std
Thibaut Schaeffer 7f259b43c7 Support degree ranges (#1667)
We currently hardcode the range of degrees that variable degree machines
are preprocessed for. Expose that in machines instead.

This changes pil namespaces to accept a min and max degree:
```
namespace main(123..456);
namespace main(5); // allowed for backward compatibility, translates to `5..5`
```

It adds two new builtins:
```
std::prover::min_degree
std::prover::max_degree
```

And sets the behavior of the `std::prover::degree` builtin to only
succeed if `min_degree` and `max_degree` are equal.
2024-09-03 12:37:44 +00:00
..
2024-09-03 12:37:44 +00:00
2024-08-05 09:05:16 +00:00
2024-05-13 08:32:31 +00:00
2024-07-09 07:31:08 +00:00
2024-09-03 12:37:44 +00:00