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

Cannot infer the value of static param #10220

Open
mratsim opened this issue Jan 6, 2019 · 2 comments
Open

Cannot infer the value of static param #10220

mratsim opened this issue Jan 6, 2019 · 2 comments

Comments

@mratsim
Copy link
Collaborator

mratsim commented Jan 6, 2019

Sorry for the long repro code, it's quite tricky to extract it from my codebase and keep the issue reproducible as 3 differents procs/statements need to be present

This is a follow-up on my Go playing bot project which triggered many bugs last April every time I tried to avoid one:

With this new example I get:

cannot_infer.nim(90, 15) template/generic instantiation of `search_best_move` from here
cannot_infer.nim(81, 7) template/generic instantiation of `run_rollout` from here
cannot_infer.nim(19, 42) Error: cannot infer the value of the static param 'N'
import hashes, tables

type
  ################################ Coordinates ###################################
  GoInt* = int32

  Point*[N: static[GoInt]] = distinct range[-1.GoInt .. (N+2) * (N+2) - 1]
    # Can't use plain static[GoInt]: https://github.com/nim-lang/Nim/issues/7609

  ################################ Coordinates ###################################

  ################################ Color & Moves ###################################

  Intersection* = enum
    Empty, Black, White, Border

  ################################ Board  ###################################

  Board*[N: static[GoInt]] = array[(N+2) * (N+2), Intersection]

  BoardState*[N: static[GoInt]] = ref object
    board*: Board[N]

  ################################ Monte-Carlo ###################################

  Zobrist* = Hash
  Node*[N: static[GoInt]] = object
  NodeTable*[N: static[GoInt]] = Table[Zobrist, Node[N]]

  MCTS_Context*[N: static[GoInt]] = object
    nodes*: NodeTable[N]

################################ Procedures ###################################

func newBoardState*(size: static[GoInt]): BoardState[size] =
  new result

# Remove for no crash
func `$`*[N: static[GoInt]](board: Board[N]): string =
  # Display a go board - Triggers crash <------------------------------
  result = "foo"

proc run_rollout[N: static[GoInt]](
        self: var MCTS_Context[N],
        board_state: BoardState[N]) =

  var
    amaf_color_map: array[(N+2)*(N+2), Intersection]

  # Comment the following out and the project compiles:
  echo amaf_color_map # Triggers crash <------------------------------

proc search_best_move*[N: static[GoInt]](
  self: var MCTS_Context[N], board_state: BoardState[N],
  nb_simulations: Natural): Point[N] =

  self.run_rollout(board_state)

################################ Bug ###################################

var a = newBoardState(GoInt 19) # Triggers crash <------------------------------
# var a: BoardState[GoInt 19] # This is another possible fix

var ctx: MCTS_Context[GoInt 19]

let move = ctx.search_best_move(a, 10)
@stale
Copy link

stale bot commented Aug 4, 2020

This issue has been automatically marked as stale because it has not had recent activity. If you think it is still a valid issue, write a comment below; otherwise it will be closed. Thank you for your contributions.

@stale stale bot added the stale Staled PR/issues; remove the label after fixing them label Aug 4, 2020
@narimiran
Copy link
Member

var a = newBoardState(GoInt 19) # Triggers crash <------------------------------

This doesn't trigger crash anymore.

echo amaf_color_map # Triggers crash <------------------------------

This doesn't crash, but it produces:

Error: type mismatch: got <array[0..440, Intersection]>
but expected one of:
proc echo(x: varargs[typed, `$`])
  first type mismatch at position: 1
  required type for x: varargs[typed]
  but expression 'amaf_color_map' is of type: array[0..440, Intersection]

@stale stale bot removed the stale Staled PR/issues; remove the label after fixing them label Jan 20, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants