Perform creation and registration
| 114 | public: |
| 115 | /// Perform creation and registration |
| 116 | Create(void) { |
| 117 | using namespace Gecode; |
| 118 | for (IntRelTypes irts; irts(); ++irts) { |
| 119 | (void) new IntLex(irts.irt()); |
| 120 | (void) new BoolLex(irts.irt()); |
| 121 | } |
| 122 | } |
| 123 | }; |
| 124 | |
| 125 | Create c; |