Skip to content

Commit

Permalink
Added combinatorial game trait
Browse files Browse the repository at this point in the history
  • Loading branch information
ishirgarg committed Apr 5, 2024
1 parent 5a0f572 commit 7250d89
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/game/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,16 @@ where
}
}

// Indicates that a game is combinatorial; this differs from ClassicGame in that the possible
// utility values are further restricted to Win or Lose.

pub trait Combinatorial
where
Self: ClassicGame
{

}

/* GAME STRUCTURE MARKERS */

/// Indicates that the graph induced by the underlying game's states is acyclic.
Expand Down

0 comments on commit 7250d89

Please sign in to comment.