Skip to content

Commit

Permalink
🔥 remove static_assert for type check in UniqueTable to allow use in …
Browse files Browse the repository at this point in the history
…other packages
  • Loading branch information
Joshy-R committed Mar 9, 2025
1 parent c874258 commit 727c55c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions include/mqt-core/dd/UniqueTable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ namespace dd {
*/
template <class Node, std::size_t NBUCKET = 32768> class UniqueTable {

static_assert(
std::disjunction_v<std::is_same<Node, vNode>, std::is_same<Node, mNode>,
std::is_same<Node, dNode>>,
"Node type must be one of vNode, mNode, dNode");

public:
/**
* @brief The initial garbage collection limit.
Expand Down

0 comments on commit 727c55c

Please sign in to comment.