-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMap.hpp
More file actions
1459 lines (1274 loc) · 38 KB
/
Map.hpp
File metadata and controls
1459 lines (1274 loc) · 38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef ISL_CXX_Map_IMPL_H
#define ISL_CXX_Map_IMPL_H
#include "isl/Map.h"
#include "isl/Aff.hpp"
#include "isl/BasicMap.hpp"
#include "isl/Constraint.hpp"
#include "isl/Id.hpp"
#include "isl/MultiAff.hpp"
#include "isl/MultiPwAff.hpp"
#include "isl/PwAff.hpp"
#include "isl/PwMultiAff.hpp"
#include "isl/PwQpolynomialFold.hpp"
#include "isl/Set.hpp"
#include "isl/Space.hpp"
#include "isl/Val.hpp"
#include "isl/Bool.h"
#include "isl/Ctx.hpp"
#include "isl/DimType.h"
#include "isl/Format.h"
#include "isl/IslException.h"
#include "isl/Stat.h"
#include "isl/UnionMap.hpp"
#include "isl/map.h"
#include <string>
#include <cassert>
namespace isl {
inline isl_map *Map::GetCopy() const {
return isl_map_copy((isl_map *)This);
}
inline Map &Map::operator=(const Map &Other) {
isl_map *New = Other.GetCopy();
ctx = Other.Context();
isl_map_free((isl_map *)This);
This = New;
return *this;
}
inline Map Map::fromPwAff(const PwAff &pwaff) {
const Ctx &_ctx = pwaff.Context();
_ctx.lock();
isl_map *That = isl_map_from_pw_aff((pwaff).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_pw_aff returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::natUniverse(const Space &dim) {
const Ctx &_ctx = dim.Context();
_ctx.lock();
isl_map *That = isl_map_nat_universe((dim).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_nat_universe returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::empty(const Space &dim) {
const Ctx &_ctx = dim.Context();
_ctx.lock();
isl_map *That = isl_map_empty((dim).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_empty returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::lexLeFirst(const Space &dim, unsigned int n) {
const Ctx &_ctx = dim.Context();
_ctx.lock();
isl_map *That = isl_map_lex_le_first((dim).GetCopy(), n);
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_lex_le_first returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::lexLt(const Space &set_dim) {
const Ctx &_ctx = set_dim.Context();
_ctx.lock();
isl_map *That = isl_map_lex_lt((set_dim).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_lex_lt returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::lexLe(const Space &set_dim) {
const Ctx &_ctx = set_dim.Context();
_ctx.lock();
isl_map *That = isl_map_lex_le((set_dim).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_lex_le returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::lexGtFirst(const Space &dim, unsigned int n) {
const Ctx &_ctx = dim.Context();
_ctx.lock();
isl_map *That = isl_map_lex_gt_first((dim).GetCopy(), n);
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_lex_gt_first returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::lexGeFirst(const Space &dim, unsigned int n) {
const Ctx &_ctx = dim.Context();
_ctx.lock();
isl_map *That = isl_map_lex_ge_first((dim).GetCopy(), n);
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_lex_ge_first returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::lexGt(const Space &set_dim) {
const Ctx &_ctx = set_dim.Context();
_ctx.lock();
isl_map *That = isl_map_lex_gt((set_dim).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_lex_gt returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::lexGe(const Space &set_dim) {
const Ctx &_ctx = set_dim.Context();
_ctx.lock();
isl_map *That = isl_map_lex_ge((set_dim).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_lex_ge returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::readFromStr(const Ctx &ctx, std::string str) {
const Ctx &_ctx = ctx.Context();
_ctx.lock();
isl_map *That = isl_map_read_from_str((ctx.Get()), str.c_str());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_read_from_str returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::fromBasicMap(const BasicMap &bmap) {
const Ctx &_ctx = bmap.Context();
_ctx.lock();
isl_map *That = isl_map_from_basic_map((bmap).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_basic_map returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::fromDomain(const Set &set) {
const Ctx &_ctx = set.Context();
_ctx.lock();
isl_map *That = isl_map_from_domain((set).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_domain returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::fromRange(const Set &set) {
const Ctx &_ctx = set.Context();
_ctx.lock();
isl_map *That = isl_map_from_range((set).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_range returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::fromDomainAndRange(const Set &domain, const Set &range) {
const Ctx &_ctx = range.Context();
_ctx.lock();
isl_map *That = isl_map_from_domain_and_range((domain).GetCopy(), (range).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_domain_and_range returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::fromSet(const Set &set, const Space &dim) {
const Ctx &_ctx = dim.Context();
_ctx.lock();
isl_map *That = isl_map_from_set((set).GetCopy(), (dim).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_set returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::fromAff(const Aff &aff) {
const Ctx &_ctx = aff.Context();
_ctx.lock();
isl_map *That = isl_map_from_aff((aff).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_aff returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::fromMultiAff(const MultiAff &maff) {
const Ctx &_ctx = maff.Context();
_ctx.lock();
isl_map *That = isl_map_from_multi_aff((maff).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_multi_aff returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map Map::fromUnionMap(const UnionMap &umap) {
const Ctx &_ctx = umap.Context();
_ctx.lock();
isl_map *That = isl_map_from_union_map((umap).GetCopy());
_ctx.unlock();
if (_ctx.hasError()) {
handleError("isl_map_from_union_map returned a NULL pointer.");
}
return Map(_ctx, That);
}
inline Map::~Map() {
isl_map_free((isl_map *)This);
This = nullptr;
}
/// rief Release ownership of the wrapped object.
///
/// You are on your own now buddy.
/// The wrapper cannot be used anymore after calling Give()
///
///@return the wrapped isl object.
inline isl_map *Map::Give() {
isl_map *res = (isl_map *)This;
This = nullptr;
return res;
}
/// \brief Unwrap the stored isl object.
/// \returns A the wrapped isl object.
inline isl_map *Map::Get() const { return (isl_map *)This;
}
inline Map Map::addConstraint(const Constraint &constraint) const {
ctx.lock();
isl_map * res = isl_map_add_constraint((*this).GetCopy(), (constraint).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_add_constraint returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::addDims(DimType type, unsigned int n) const {
ctx.lock();
isl_map * res = isl_map_add_dims((*this).GetCopy(), (enum isl_dim_type)type, n);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_add_dims returned a NULL pointer.");
}
return Map(ctx, res);
}
inline BasicMap Map::affineHull() const {
ctx.lock();
isl_basic_map * res = isl_map_affine_hull((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_affine_hull returned a NULL pointer.");
}
return BasicMap(ctx, res);
}
inline Map Map::alignDivs() const {
ctx.lock();
isl_map * res = isl_map_align_divs((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_align_divs returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::alignParams(const Space &model) const {
ctx.lock();
isl_map * res = isl_map_align_params((*this).GetCopy(), (model).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_align_params returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::applyDomain(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_apply_domain((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_apply_domain returned a NULL pointer.");
}
return Map(ctx, res);
}
inline PwQpolynomialFold Map::applyPwQpolynomialFold(const PwQpolynomialFold &pwf, int * tight) const {
ctx.lock();
isl_pw_qpolynomial_fold * res = isl_map_apply_pw_qpolynomial_fold((*this).GetCopy(), (pwf).GetCopy(), tight);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_apply_pw_qpolynomial_fold returned a NULL pointer.");
}
return PwQpolynomialFold(ctx, res);
}
inline Map Map::applyRange(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_apply_range((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_apply_range returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Bool Map::canCurry() const {
ctx.lock();
isl_bool res = isl_map_can_curry((*this).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::canUncurry() const {
ctx.lock();
isl_bool res = isl_map_can_uncurry((*this).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::canZip() const {
ctx.lock();
isl_bool res = isl_map_can_zip((*this).Get());
ctx.unlock();
return (Bool)res;
}
inline Map Map::coalesce() const {
ctx.lock();
isl_map * res = isl_map_coalesce((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_coalesce returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::complement() const {
ctx.lock();
isl_map * res = isl_map_complement((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_complement returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::computeDivs() const {
ctx.lock();
isl_map * res = isl_map_compute_divs((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_compute_divs returned a NULL pointer.");
}
return Map(ctx, res);
}
inline BasicMap Map::convexHull() const {
ctx.lock();
isl_basic_map * res = isl_map_convex_hull((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_convex_hull returned a NULL pointer.");
}
return BasicMap(ctx, res);
}
inline Map Map::curry() const {
ctx.lock();
isl_map * res = isl_map_curry((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_curry returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Set Map::deltas() const {
ctx.lock();
isl_set * res = isl_map_deltas((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_deltas returned a NULL pointer.");
}
return Set(ctx, res);
}
inline Map Map::deltasMap() const {
ctx.lock();
isl_map * res = isl_map_deltas_map((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_deltas_map returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::detectEqualities() const {
ctx.lock();
isl_map * res = isl_map_detect_equalities((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_detect_equalities returned a NULL pointer.");
}
return Map(ctx, res);
}
inline unsigned int Map::dim(DimType type) const {
ctx.lock();
unsigned int res = isl_map_dim((*this).Get(), (enum isl_dim_type)type);
ctx.unlock();
return res;
}
inline PwAff Map::dimMax(int pos) const {
ctx.lock();
isl_pw_aff * res = isl_map_dim_max((*this).GetCopy(), pos);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_dim_max returned a NULL pointer.");
}
return PwAff(ctx, res);
}
inline Set Map::domain() const {
ctx.lock();
isl_set * res = isl_map_domain((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_domain returned a NULL pointer.");
}
return Set(ctx, res);
}
inline Map Map::domainMap() const {
ctx.lock();
isl_map * res = isl_map_domain_map((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_domain_map returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::domainProduct(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_domain_product((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_domain_product returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::dropConstraintsInvolvingDims(DimType type, unsigned int first, unsigned int n) const {
ctx.lock();
isl_map * res = isl_map_drop_constraints_involving_dims((*this).GetCopy(), (enum isl_dim_type)type, first, n);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_drop_constraints_involving_dims returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::eliminate(DimType type, unsigned int first, unsigned int n) const {
ctx.lock();
isl_map * res = isl_map_eliminate((*this).GetCopy(), (enum isl_dim_type)type, first, n);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_eliminate returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::equate(DimType type1, int pos1, DimType type2, int pos2) const {
ctx.lock();
isl_map * res = isl_map_equate((*this).GetCopy(), (enum isl_dim_type)type1, pos1, (enum isl_dim_type)type2, pos2);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_equate returned a NULL pointer.");
}
return Map(ctx, res);
}
inline int Map::findDimById(DimType type, const Id &id) const {
ctx.lock();
int res = isl_map_find_dim_by_id((*this).Get(), (enum isl_dim_type)type, (id).Get());
ctx.unlock();
return res;
}
inline int Map::findDimByName(DimType type, std::string name) const {
ctx.lock();
int res = isl_map_find_dim_by_name((*this).Get(), (enum isl_dim_type)type, name.c_str());
ctx.unlock();
return res;
}
inline Map Map::fixVal(DimType type, unsigned int pos, const Val &v) const {
ctx.lock();
isl_map * res = isl_map_fix_val((*this).GetCopy(), (enum isl_dim_type)type, pos, (v).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_fix_val returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::fixedPowerVal(const Val &exp) const {
ctx.lock();
isl_map * res = isl_map_fixed_power_val((*this).GetCopy(), (exp).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_fixed_power_val returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::flatDomainProduct(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_flat_domain_product((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_flat_domain_product returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::flatProduct(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_flat_product((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_flat_product returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::flatRangeProduct(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_flat_range_product((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_flat_range_product returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::flatten() const {
ctx.lock();
isl_map * res = isl_map_flatten((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_flatten returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::flattenDomain() const {
ctx.lock();
isl_map * res = isl_map_flatten_domain((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_flatten_domain returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::flattenRange() const {
ctx.lock();
isl_map * res = isl_map_flatten_range((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_flatten_range returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::floordivVal(const Val &d) const {
ctx.lock();
isl_map * res = isl_map_floordiv_val((*this).GetCopy(), (d).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_floordiv_val returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Stat Map::foreachBasicMap(const std::function<isl_stat(isl_basic_map *, void *)> && fn, void * user) const {
ctx.lock();
isl_stat res = isl_map_foreach_basic_map((*this).Get(), get_fn_ptr<4>(fn), user);
ctx.unlock();
return (Stat)res;
}
inline Id Map::getDimId(DimType type, unsigned int pos) const {
ctx.lock();
isl_id * res = isl_map_get_dim_id((*this).Get(), (enum isl_dim_type)type, pos);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_get_dim_id returned a NULL pointer.");
}
return Id(ctx, res);
}
inline std::string Map::getDimName(DimType type, unsigned int pos) const {
ctx.lock();
const char * res = isl_map_get_dim_name((*this).Get(), (enum isl_dim_type)type, pos);
ctx.unlock();
std::string res_;
if (ctx.hasError()) {
handleError("isl_map_get_dim_name returned a NULL pointer.");
}
res_ = res;
return res_;
}
inline Space Map::getSpace() const {
ctx.lock();
isl_space * res = isl_map_get_space((*this).Get());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_get_space returned a NULL pointer.");
}
return Space(ctx, res);
}
inline Id Map::getTupleId(DimType type) const {
ctx.lock();
isl_id * res = isl_map_get_tuple_id((*this).Get(), (enum isl_dim_type)type);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_get_tuple_id returned a NULL pointer.");
}
return Id(ctx, res);
}
inline std::string Map::getTupleName(DimType type) const {
ctx.lock();
const char * res = isl_map_get_tuple_name((*this).Get(), (enum isl_dim_type)type);
ctx.unlock();
std::string res_;
if (ctx.hasError()) {
handleError("isl_map_get_tuple_name returned a NULL pointer.");
}
res_ = res;
return res_;
}
inline Map Map::gist(const Map &context) const {
ctx.lock();
isl_map * res = isl_map_gist((*this).GetCopy(), (context).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_gist returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::gistBasicMap(const BasicMap &context) const {
ctx.lock();
isl_map * res = isl_map_gist_basic_map((*this).GetCopy(), (context).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_gist_basic_map returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::gistDomain(const Set &context) const {
ctx.lock();
isl_map * res = isl_map_gist_domain((*this).GetCopy(), (context).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_gist_domain returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::gistParams(const Set &context) const {
ctx.lock();
isl_map * res = isl_map_gist_params((*this).GetCopy(), (context).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_gist_params returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::gistRange(const Set &context) const {
ctx.lock();
isl_map * res = isl_map_gist_range((*this).GetCopy(), (context).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_gist_range returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Bool Map::hasDimId(DimType type, unsigned int pos) const {
ctx.lock();
isl_bool res = isl_map_has_dim_id((*this).Get(), (enum isl_dim_type)type, pos);
ctx.unlock();
return (Bool)res;
}
inline Bool Map::hasDimName(DimType type, unsigned int pos) const {
ctx.lock();
isl_bool res = isl_map_has_dim_name((*this).Get(), (enum isl_dim_type)type, pos);
ctx.unlock();
return (Bool)res;
}
inline int Map::hasEqualSpace(const Map &map2) const {
ctx.lock();
int res = isl_map_has_equal_space((*this).Get(), (map2).Get());
ctx.unlock();
return res;
}
inline Bool Map::hasTupleId(DimType type) const {
ctx.lock();
isl_bool res = isl_map_has_tuple_id((*this).Get(), (enum isl_dim_type)type);
ctx.unlock();
return (Bool)res;
}
inline Bool Map::hasTupleName(DimType type) const {
ctx.lock();
isl_bool res = isl_map_has_tuple_name((*this).Get(), (enum isl_dim_type)type);
ctx.unlock();
return (Bool)res;
}
inline Map Map::insertDims(DimType type, unsigned int pos, unsigned int n) const {
ctx.lock();
isl_map * res = isl_map_insert_dims((*this).GetCopy(), (enum isl_dim_type)type, pos, n);
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_insert_dims returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::intersect(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_intersect((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_intersect returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::intersectDomain(const Set &set) const {
ctx.lock();
isl_map * res = isl_map_intersect_domain((*this).GetCopy(), (set).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_intersect_domain returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::intersectParams(const Set ¶ms) const {
ctx.lock();
isl_map * res = isl_map_intersect_params((*this).GetCopy(), (params).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_intersect_params returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::intersectRange(const Set &set) const {
ctx.lock();
isl_map * res = isl_map_intersect_range((*this).GetCopy(), (set).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_intersect_range returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Bool Map::involvesDims(DimType type, unsigned int first, unsigned int n) const {
ctx.lock();
isl_bool res = isl_map_involves_dims((*this).Get(), (enum isl_dim_type)type, first, n);
ctx.unlock();
return (Bool)res;
}
inline Bool Map::isBijective() const {
ctx.lock();
isl_bool res = isl_map_is_bijective((*this).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::isDisjoint(const Map &map2) const {
ctx.lock();
isl_bool res = isl_map_is_disjoint((*this).Get(), (map2).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::isEmpty() const {
ctx.lock();
isl_bool res = isl_map_is_empty((*this).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::isEqual(const Map &map2) const {
ctx.lock();
isl_bool res = isl_map_is_equal((*this).Get(), (map2).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::isInjective() const {
ctx.lock();
isl_bool res = isl_map_is_injective((*this).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::isSingleValued() const {
ctx.lock();
isl_bool res = isl_map_is_single_valued((*this).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::isStrictSubset(const Map &map2) const {
ctx.lock();
isl_bool res = isl_map_is_strict_subset((*this).Get(), (map2).Get());
ctx.unlock();
return (Bool)res;
}
inline Bool Map::isSubset(const Map &map2) const {
ctx.lock();
isl_bool res = isl_map_is_subset((*this).Get(), (map2).Get());
ctx.unlock();
return (Bool)res;
}
inline int Map::isTranslation() const {
ctx.lock();
int res = isl_map_is_translation((*this).Get());
ctx.unlock();
return res;
}
inline Map Map::lexGeMap(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_lex_ge_map((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_lex_ge_map returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::lexGtMap(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_lex_gt_map((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_lex_gt_map returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::lexLeMap(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_lex_le_map((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_lex_le_map returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::lexLtMap(const Map &map2) const {
ctx.lock();
isl_map * res = isl_map_lex_lt_map((*this).GetCopy(), (map2).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_lex_lt_map returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::lexmax() const {
ctx.lock();
isl_map * res = isl_map_lexmax((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_lexmax returned a NULL pointer.");
}
return Map(ctx, res);
}
inline Map Map::lexmin() const {
ctx.lock();
isl_map * res = isl_map_lexmin((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {
handleError("isl_map_lexmin returned a NULL pointer.");
}
return Map(ctx, res);
}
inline PwMultiAff Map::lexminPwMultiAff() const {
ctx.lock();
isl_pw_multi_aff * res = isl_map_lexmin_pw_multi_aff((*this).GetCopy());
ctx.unlock();
if (ctx.hasError()) {