diff --git a/docs/python/ortools/util/sorted_interval_list.html b/docs/python/ortools/util/sorted_interval_list.html index e242486e8e..3e0cb6e282 100644 --- a/docs/python/ortools/util/sorted_interval_list.html +++ b/docs/python/ortools/util/sorted_interval_list.html @@ -33,6 +33,16 @@ a:link { color: #46641e; text-decoration: none} # Do not make changes to this file unless you know what you are doing--modify # the SWIG interface file instead. + +__pdoc__ = {} +__pdoc__['Domain_AllValues'] = False +__pdoc__['Domain_FromFlatIntervals'] = False +__pdoc__['Domain_FromIntervals'] = False +__pdoc__['Domain_FromValues'] = False +__pdoc__['Domain.thisown'] = False + + + from sys import version_info as _swig_python_version_info if _swig_python_version_info < (2, 7, 0): raise RuntimeError('Python 2.7 or later required') @@ -250,57 +260,6 @@ def __lshift__(*args) -> "std::ostream &":
-

Functions

-
-
-def Domain_AllValues() -
-
-

Returns the full domain Int64.

-
-Source code -
def Domain_AllValues() -> "operations_research::Domain":
-    r""" Returns the full domain Int64."""
-    return _sorted_interval_list.Domain_AllValues()
-
-
-
-def Domain_FromFlatIntervals(flat_intervals) -
-
-

This method is available in Python, Java and .NET. It allows building a Domain object from a flattened list of intervals (long[] in Java and .NET, [0, 2, 5, 5, 8, 10] in python).

-
-Source code -
def Domain_FromFlatIntervals(flat_intervals: 'std::vector< int64 > const &') -> "operations_research::Domain":
-    r""" This method is available in Python, Java and .NET. It allows building a Domain object from a flattened list of intervals (long[] in Java and .NET, [0, 2, 5, 5, 8, 10] in python)."""
-    return _sorted_interval_list.Domain_FromFlatIntervals(flat_intervals)
-
-
-
-def Domain_FromIntervals(intervals) -
-
-

This method is available in Python, Java and .NET. It allows building a Domain object from a list of intervals (long[][] in Java and .NET, [[0, 2], [5, 5], [8, 10]] in python).

-
-Source code -
def Domain_FromIntervals(intervals: 'std::vector< std::vector< int64 > > const &') -> "operations_research::Domain":
-    r""" This method is available in Python, Java and .NET. It allows building a Domain object from a list of intervals (long[][] in Java and .NET, [[0, 2], [5, 5], [8, 10]] in python)."""
-    return _sorted_interval_list.Domain_FromIntervals(intervals)
-
-
-
-def Domain_FromValues(values) -
-
-

Creates a domain from the union of an unsorted list of integer values. Input values may be repeated, with no consequence on the output

-
-Source code -
def Domain_FromValues(values: 'std::vector< int64 >') -> "operations_research::Domain":
-    r""" Creates a domain from the union of an unsorted list of integer values. Input values may be repeated, with no consequence on the output"""
-    return _sorted_interval_list.Domain_FromValues(values)
-
-
-

Classes

@@ -478,17 +437,6 @@ def FromValues(values: 'std::vector< int64 >') -> "operatio -

Instance variables

-
-
var thisown
-
-

The membership flag

-
-Source code -
thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
-
-
-

Methods

@@ -639,14 +587,6 @@ def FromValues(values: 'std::vector< int64 >') -> "operatio
    diff --git a/ortools/util/python/sorted_interval_list.i b/ortools/util/python/sorted_interval_list.i index cbc03e472e..aa5eb33897 100644 --- a/ortools/util/python/sorted_interval_list.i +++ b/ortools/util/python/sorted_interval_list.i @@ -22,6 +22,15 @@ #include "ortools/util/sorted_interval_list.h" %} +%pythonbegin %{ +__pdoc__ = {} +__pdoc__['Domain_AllValues'] = False +__pdoc__['Domain_FromFlatIntervals'] = False +__pdoc__['Domain_FromIntervals'] = False +__pdoc__['Domain_FromValues'] = False +__pdoc__['Domain.thisown'] = False +%} + %ignoreall %unignore operations_research;