lean-ja / lean-ja/lean-by-example

semireducible 属性を紹介する

Open
#615 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

属性
Dominant language
Lean
Stars
188
Forks
15
Avg merge
9h 8m
Merged PRs (30d)
6

Description

def gcd (a b : Nat) : Nat :=
  match b with
    | 0 => a
    | n + 1 =>
      have : a % (n + 1) < n + 1 := Nat.mod_lt a (Nat.succ_pos n)
      gcd (n + 1) (a % (n + 1))
  termination_by b

example (a : Nat) : gcd a 0 = a := by 
  fail_if_success rfl
  rw [gcd]

-- semireducible タグをつけるとうまくいくようになる
@[semireducible] def gcd' (a b : Nat) : Nat :=
  match b with
    | 0 => a
    | n + 1 =>
      have : a % (n + 1) < n + 1 := Nat.mod_lt a (Nat.succ_pos n)
      gcd' (n + 1) (a % (n + 1))
  termination_by b

example (a : Nat) : gcd' a 0 = a := by 
  rfl

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

The issue provides gcd and gcd' examples demonstrating the semireducible attribute. First inspect the repository's existing example organization and comparable documentation, then add an explanation using these examples and verify that the displayed Lean snippets preserve their demonstrated behavior.

Written by the indexing model from the issue text.

Assessment

Domain
documentation
Issue type
Documentation
Difficulty
2/5
Estimated time
1-3 hours
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
45/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.