Exemple #1
0
    def FlattenedIntervals(self) -> "std::vector< int64 >":
        r"""
        This method returns the flattened list of interval bounds of the domain.

        Thus the domain {0, 1, 2, 5, 8, 9, 10} will return [0, 2, 5, 5,
        8, 10] (as a C++ std::vector<int64>, as a java or C# long[], as
        a python list of integers).
        """
        return _sorted_interval_list.Domain_FlattenedIntervals(self)
Exemple #2
0
 def FlattenedIntervals(self):
     return _sorted_interval_list.Domain_FlattenedIntervals(self)
 def FlattenedIntervals(self) -> "std::vector< int64 >":
     return _sorted_interval_list.Domain_FlattenedIntervals(self)