Skip to content

Commit

Permalink
Get IndexRanges to work
Browse files Browse the repository at this point in the history
  • Loading branch information
lroberts36 committed Sep 18, 2024
1 parent 57787fd commit e6556b9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/basic_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ using Real = double;
struct IndexRange {
int s = 0; /// Starting Index (inclusive)
int e = 0; /// Ending Index (inclusive)
operator std::pair<int, int>() const {return {s, e};}
};

// Enum speficying whether or not you requested a flux variable in
Expand Down

0 comments on commit e6556b9

Please sign in to comment.