Added support for multi-algorithm CPU threads settings.
This commit is contained in:
parent
83fdbbf29c
commit
b92807e8d8
24 changed files with 595 additions and 109 deletions
|
@ -59,10 +59,10 @@ public:
|
|||
|
||||
inline bool isEqual(const Assembly &other) const { return m_id == other.m_id; }
|
||||
|
||||
inline bool operator!=(Assembly::Id id) const { return m_id != id; }
|
||||
inline bool operator!=(const Assembly &other) const { return !isEqual(other); }
|
||||
inline bool operator!=(const Assembly::Id &id) const { return m_id != id; }
|
||||
inline bool operator==(Assembly::Id id) const { return m_id == id; }
|
||||
inline bool operator==(const Assembly &other) const { return isEqual(other); }
|
||||
inline bool operator==(const Assembly::Id &id) const { return m_id == id; }
|
||||
inline operator Assembly::Id() const { return m_id; }
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue