10 #ifndef Tempus_TimeEventRangeIndex_impl_hpp
11 #define Tempus_TimeEventRangeIndex_impl_hpp
15 template <
class Scalar>
17 : start_(0), stop_(0), stride_(1), numEvents_(1)
20 std::ostringstream oss;
27 template <
class Scalar>
29 int stride, std::string name)
30 : start_(0), stop_(0), stride_(1), numEvents_(1)
34 std::ostringstream oss;
35 oss <<
"TimeEventRangeIndex (" << start <<
"; " << stop <<
"; " << stride
46 template <
class Scalar>
56 template <
class Scalar>
67 template <
class Scalar>
74 else if (stride_ > (stop_ - start_)) {
75 stride_ = stop_ - start_;
80 template <
class Scalar>
83 if (stride_ == 0 || start_ == stop_)
86 numEvents_ = int((stop_ - start_) / stride_) + 1;
89 template <
class Scalar>
92 const int indexOfLast = start_ + (numEvents_ - 1) * stride_;
93 if (index < start_ || index > indexOfLast)
return false;
94 if ((index - start_) % stride_ == 0)
return true;
99 template <
class Scalar>
102 return indexOfNextEvent(index) - index;
105 template <
class Scalar>
109 if (index < start_)
return start_;
111 const int indexOfLast = start_ + (numEvents_ - 1) * stride_;
113 if (index >= indexOfLast)
return this->getDefaultIndex();
116 if (isIndex(index))
return index + stride_;
118 const int numStrides = (index - start_) / stride_ + 1;
119 const Scalar indexOfNext = start_ + numStrides * stride_;
123 template <
class Scalar>
127 if (index1 > index2) {
134 const Scalar indexOfLast = start_ + (numEvents_ - 1) * stride_;
135 if (index2 < start_ || indexOfLast < index1)
return false;
137 const int strideJustBeforeIndex1 = std::min(
138 int(numEvents_ - 1), std::max(
int(0),
int((index1 - start_) / stride_)));
140 const int strideJustAfterIndex2 = std::max(
141 int(0), std::min(
int(numEvents_ - 1),
int((index2 - start_) / stride_)));
143 for (
int i = strideJustBeforeIndex1; i <= strideJustAfterIndex2; i++) {
144 const int indexEvent = start_ + i * stride_;
145 if (index1 < indexEvent && indexEvent <= index2)
return true;
151 template <
class Scalar>
155 auto l_out = Teuchos::fancyOStream(out.
getOStream());
157 l_out->setOutputToRootOnly(0);
159 *l_out <<
"TimeEventRangeIndex:"
161 <<
" name = " << this->getName() <<
"\n"
162 <<
" Type = " << this->getType() <<
"\n"
163 <<
" start_ = " << start_ <<
"\n"
164 <<
" stop_ = " << stop_ <<
"\n"
165 <<
" stride_ = " << stride_ <<
"\n"
166 <<
" numEvents_ = " << numEvents_ << std::endl;
169 template <
class Scalar>
174 Teuchos::parameterList(
"Time Event Range Index");
177 pl->
set(
"Name", this->getName());
178 pl->
set(
"Type",
"Range Index");
180 pl->
set(
"Start Index", getIndexStart(),
"Start of Index range");
181 pl->
set(
"Stop Index", getIndexStop(),
"Stop of Index range");
182 pl->
set(
"Stride Index", getIndexStride(),
"Stride of Index range");
190 template <
class Scalar>
195 if (pl == Teuchos::null)
return teri;
198 pl->
get<std::string>(
"Type",
"Range Index") !=
"Range Index",
200 "Error - Time Event Type != 'Range Index'. (='" +
201 pl->
get<std::string>(
"Type") +
"')\n");
205 teri->setName(pl->
get(
"Name",
"From createTimeEventRangeIndex"));
206 teri->setIndexStart(pl->
get(
"Start Index", teri->getIndexStart()));
207 teri->setIndexStop(pl->
get(
"Stop Index", teri->getIndexStop()));
208 teri->setIndexStride(pl->
get(
"Stride Index", teri->getIndexStride()));
214 #endif // Tempus_TimeEventRangeIndex_impl_hpp
virtual void setIndexStart(int start)
Set the start of the index range.
TimeEventRangeIndex specifies a start, stop and stride index.
virtual void setType(std::string s)
virtual void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel) const
Describe member data.
virtual void setName(std::string name)
Set the name of the TimeEvent.
T & get(const std::string &name, T def_value)
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
ParameterList & set(std::string const &name, T &&value, std::string const &docString="", RCP< const ParameterEntryValidator > const &validator=null)
int start_
Start of index range.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
int stride_
Stride of index range.
virtual int indexToNextEvent(int index) const
How many indices until the next event.
void validateParametersAndSetDefaults(ParameterList const &validParamList, int const depth=1000)
virtual void setIndexStride(int stride)
Set the stride of the index range.
virtual void setNumEvents()
Set the number of events from start_, stop_ and stride_.
virtual void setIndexStop(int stop)
Set the stop of the index range.
int stop_
Stop of index range.
RCP< std::basic_ostream< char_type, traits_type > > getOStream()
TimeEventRangeIndex()
Default constructor.
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters() const
Return a valid ParameterList with current settings.
ParameterList & setName(const std::string &name)
virtual bool eventInRangeIndex(int index1, int index2) const
Test if an event occurs within the index range.
virtual int indexOfNextEvent(int index) const
Return the index of the next event following the input index.
virtual bool isIndex(int index) const
Test if index is a time event.
Teuchos::RCP< TimeEventRangeIndex< Scalar > > createTimeEventRangeIndex(Teuchos::RCP< Teuchos::ParameterList > pList)
Nonmember Constructor via ParameterList.
virtual void setIndexRange(int start, int stop, int stride)
Set the range of event indices.