Skip to content

Commit

Permalink
Fixed a misleading description
Browse files Browse the repository at this point in the history
  • Loading branch information
wmamrak authored May 14, 2024
1 parent a722121 commit 32bc316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/central64/grid/Connections.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ template <int L>
class Connections
{
public:
constexpr Connections() = default; ///< Create a set of connections for which all moves are connected.
constexpr Connections() = default; ///< Create a set of connections for which no moves are connected.

constexpr bool IsConnected(const Move<L>& move) const { return bool(flags_ & (Unsigned<L>::unit << move.Index())); } ///< Check whether the specified `move` is connected.
constexpr bool IsAllConnected() const { return bool(flags_ == Unsigned<L>::max); } ///< Check whether all moves are connected.
Expand Down

0 comments on commit 32bc316

Please sign in to comment.