This PR renames `instance_reducible` to `implicit_reducible` and adds a new `backward.isDefEq.implicitBump` option to prepare for treating all implicit arguments uniformly during definitional equality checking. ## Changes **Rename `instance_reducible` → `implicit_reducible`:** - Rename `ReducibilityStatus.instanceReducible` constructor to `implicitReducible` - Register new `[implicit_reducible]` attribute, keep `[instance_reducible]` as alias - Rename `isInstanceReducible` → `isImplicitReducible` (with deprecated aliases) - Update all references across src/ and tests/ The rename reflects that this reducibility level is used not just for instances but for any definition that needs unfolding during implicit argument resolution (e.g., `Nat.add`, `Array.size`). **Add `backward.isDefEq.implicitBump` option:** - When `true` (+ `respectTransparency`), bumps transparency to `.instances` for ALL implicit arguments in `isDefEqArgs`, not just instance-implicit ones - Defaults to `false` for staging compatibility — will be flipped to `true` after stage0 update - Adds `// update me!` to `stage0/src/stdlib_flags.h` to trigger CI stage0 update ## Follow-up (after stage0 update) - Flip `backward.isDefEq.implicitBump` default to `true` - Fix resulting test/module failures 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
103 lines
3.1 KiB
Text
103 lines
3.1 KiB
Text
def f (x : Nat) := x + 1
|
|
|
|
/--
|
|
error: failed to set `[semireducible]` for `f`, declarations are `[semireducible]` by default
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [semireducible] f
|
|
|
|
attribute [reducible] f
|
|
|
|
/--
|
|
error: failed to set `[reducible]`, `f` is not currently `[semireducible]`, but `[reducible]`
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [reducible] f -- should fail because of double reducible setting
|
|
|
|
-- "Reset" `f`
|
|
set_option allowUnsafeReducibility true in
|
|
attribute [semireducible] f
|
|
|
|
attribute [irreducible] f
|
|
|
|
/--
|
|
error: failed to set `[irreducible]`, `f` is not currently `[semireducible]` nor `[implicit_reducible]`, but `[irreducible]`
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [irreducible] f
|
|
|
|
attribute [local semireducible] f
|
|
|
|
/--
|
|
error: failed to set `[local semireducible]`, `f` is currently `[semireducible]`, `[irreducible]` expected
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [local semireducible] f
|
|
|
|
attribute [local irreducible] f
|
|
|
|
/--
|
|
error: failed to set `[local irreducible]`, `f` is currently `[irreducible]`, `[semireducible]` nor `[implicit_reducible]` expected
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [local irreducible] f
|
|
|
|
/--
|
|
error: failed to set `[local reducible]` for `f`, recall that `[reducible]` affects the term indexing datastructures used by `simp` and type class resolution
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [local reducible] f
|
|
|
|
/--
|
|
error: failed to set reducibility status, `Nat.add` has not been defined in this file, consider using the `local` modifier
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [semireducible] Nat.add
|
|
|
|
/--
|
|
error: failed to set reducibility status, `Nat.add` has not been defined in this file, consider using the `local` modifier
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [reducible] Nat.add
|
|
|
|
/--
|
|
error: failed to set reducibility status, `Nat.add` has not been defined in this file, consider using the `local` modifier
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [irreducible] Nat.add
|
|
|
|
/-- error: Scoped attributes must be used inside namespaces -/
|
|
#guard_msgs in
|
|
attribute [scoped reducible] Nat.add
|
|
|
|
namespace Foo
|
|
/--
|
|
error: failed to set reducibility status for `Nat.add`, the `scoped` modifier is not recommended for this kind of attribute
|
|
|
|
Note: Use `set_option allowUnsafeReducibility true` to override reducibility status validation
|
|
-/
|
|
#guard_msgs in
|
|
attribute [scoped reducible] Nat.add
|
|
|
|
set_option allowUnsafeReducibility true in
|
|
attribute [scoped reducible] Nat.add
|
|
|
|
end Foo
|