@@ -225,7 +225,8 @@ factory :
225
225
)
226
226
;
227
227
228
- // TODO: Missing in AMReX iMultiFab as of v25.01
228
+ // TODO: Missing in AMReX iMultiFab as of v25.02
229
+ // https://github.com/AMReX-Codes/amrex/issues/4317
229
230
if constexpr (std::is_same_v<T, MultiFab>) {
230
231
py_MultiFab
231
232
.def (" sum_unique" ,
@@ -478,7 +479,7 @@ factory :
478
479
)
479
480
;
480
481
481
- // TODO: Missing in iMultiFab
482
+ // TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317
482
483
if constexpr (std::is_same_v<T, MultiFab>) {
483
484
py_MultiFab
484
485
.def (" add" ,
@@ -503,7 +504,7 @@ factory :
503
504
)
504
505
;
505
506
506
- // TODO: Missing in iMultiFab
507
+ // TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317
507
508
if constexpr (std::is_same_v<T, MultiFab>) {
508
509
py_MultiFab
509
510
.def (" subtract" ,
@@ -554,7 +555,7 @@ factory :
554
555
555
556
if constexpr (std::is_same_v<T, MultiFab>) {
556
557
py_MultiFab
557
- .def (" divide" , /* TODO: Missing in iMultiFab */
558
+ .def (" divide" , /* TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317 */
558
559
[](T &self, T const &src, int srccomp, int comp, int numcomp, IntVect const &nghost) {
559
560
T::Divide (self, src, srccomp, comp, numcomp, nghost);
560
561
},
@@ -563,7 +564,7 @@ factory :
563
564
" The two MultiFabs MUST have the same underlying BoxArray."
564
565
)
565
566
566
- .def (" swap" , /* TODO: Missing in iMultiFab */
567
+ .def (" swap" , /* TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317 */
567
568
[](T &self, T &src, int srccomp, int comp, int numcomp, int nghost) {
568
569
T::Swap (self, src, srccomp, comp, numcomp, nghost);
569
570
},
@@ -572,7 +573,7 @@ factory :
572
573
" The two MultiFabs MUST have the same underlying BoxArray.\n "
573
574
" The swap is local."
574
575
)
575
- .def (" swap" , /* TODO: Missing in iMultiFab */
576
+ .def (" swap" , /* TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317 */
576
577
[](T &self, T &src, int srccomp, int comp, int numcomp, IntVect const &nghost) {
577
578
T::Swap (self, src, srccomp, comp, numcomp, nghost);
578
579
},
0 commit comments