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

staticメンバー関数問題 #65

Open
chaemon opened this issue Nov 12, 2023 · 0 comments
Open

staticメンバー関数問題 #65

chaemon opened this issue Nov 12, 2023 · 0 comments

Comments

@chaemon
Copy link
Collaborator

chaemon commented Nov 12, 2023

おそらく、こんなことを気にしているのは拙者くらいであろうが、nimにおいてobjectのstaticメンバー関数をどう定義するかで悩んでいました。ac-libraryのsegtreeのop, eあたりがC++のstaticメンバー関数で書かれていて合わせられると嬉しいです。現状

  1. ジェネリクスに無理やり入れる→デメリット:いろいろとコツがいる、Nimの公式の手法ではなさそう
  2. dynamic変数で我慢する→デメリット:遅い

があって、1. で頑張っています。

import times, math


# ジェネリクスに無理やり入れる1
block:
  let time = cpuTime()
  type S[f:static[proc(a, b:int):int]] = object
    discard
  var s0:S[proc(a, b:int):int = a + b]
  var s = 0
  for _ in 0 ..< 10^9:
    s += s0.f(3, 4)
  echo s, " ", cpu_time() - time

# ジェネリクスに無理やり入れる2 (1.0.6ではコンパイルできないが1.6.14ではコンパイルできる模様)
block:
  let time = cpuTime()
  type S[T;f, g:static[auto]] = object
    discard
  var s0 = S[int, proc(a, b:int):int = a + b, proc(a, b:int):int = a * b]()
  var s = 0
  for _ in 0 ..< 10^9:
    s += s0.f(3, 4)
  echo s, " ", cpu_time() - time

# procで定義
block:
  let time = cpuTime()
  proc f(a, b:int):int = a + b
  var s = 0
  for _ in 0 ..< 10^9:
    s += f(3, 4)
  echo s, " ", cpu_time() - time

# メンバ変数で動的に定義
block:
  let time = cpuTime()
  type S = object
    f:proc(a, b:int):int
  var s0 = S(f:proc(a, b:int):int = a + b)
  var s = 0
  for _ in 0 ..< 10^9:
    s += s0.f(3, 4)
  echo s, " ", cpu_time() - time
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant