コード例 #1
0
ファイル: compact_set.hpp プロジェクト: igel-kun/Status
 // return whether there are some elements that are fix
 inline bool has_no_fixed_elements() const {
   return fix.empty();
 }
コード例 #2
0
ファイル: compact_set.hpp プロジェクト: igel-kun/Status
 // return whether the list contains no element
 bool empty() const{
   return fix.empty() && variable.empty();
 }