@@ -225,7 +225,8 @@ factory :
225225 )
226226 ;
227227
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
229230 if constexpr (std::is_same_v<T, MultiFab>) {
230231 py_MultiFab
231232 .def (" sum_unique" ,
@@ -478,7 +479,7 @@ factory :
478479 )
479480 ;
480481
481- // TODO: Missing in iMultiFab
482+ // TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317
482483 if constexpr (std::is_same_v<T, MultiFab>) {
483484 py_MultiFab
484485 .def (" add" ,
@@ -503,7 +504,7 @@ factory :
503504 )
504505 ;
505506
506- // TODO: Missing in iMultiFab
507+ // TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317
507508 if constexpr (std::is_same_v<T, MultiFab>) {
508509 py_MultiFab
509510 .def (" subtract" ,
@@ -554,7 +555,7 @@ factory :
554555
555556 if constexpr (std::is_same_v<T, MultiFab>) {
556557 py_MultiFab
557- .def (" divide" , /* TODO: Missing in iMultiFab */
558+ .def (" divide" , /* TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317 */
558559 [](T &self, T const &src, int srccomp, int comp, int numcomp, IntVect const &nghost) {
559560 T::Divide (self, src, srccomp, comp, numcomp, nghost);
560561 },
@@ -563,7 +564,7 @@ factory :
563564 " The two MultiFabs MUST have the same underlying BoxArray."
564565 )
565566
566- .def (" swap" , /* TODO: Missing in iMultiFab */
567+ .def (" swap" , /* TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317 */
567568 [](T &self, T &src, int srccomp, int comp, int numcomp, int nghost) {
568569 T::Swap (self, src, srccomp, comp, numcomp, nghost);
569570 },
@@ -572,7 +573,7 @@ factory :
572573 " The two MultiFabs MUST have the same underlying BoxArray.\n "
573574 " The swap is local."
574575 )
575- .def (" swap" , /* TODO: Missing in iMultiFab */
576+ .def (" swap" , /* TODO: Missing in iMultiFab https://github.com/AMReX-Codes/amrex/issues/4317 */
576577 [](T &self, T &src, int srccomp, int comp, int numcomp, IntVect const &nghost) {
577578 T::Swap (self, src, srccomp, comp, numcomp, nghost);
578579 },
0 commit comments