This file is indexed.

/usr/share/pyshared/openturns/solver.py is in python-openturns 1.2-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
# This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.10
#
# Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead.


"""
Solvers.
"""


from sys import version_info
if version_info >= (2,6,0):
    def swig_import_helper():
        from os.path import dirname
        import imp
        fp = None
        try:
            fp, pathname, description = imp.find_module('_solver', [dirname(__file__)])
        except ImportError:
            import _solver
            return _solver
        if fp is not None:
            try:
                _mod = imp.load_module('_solver', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _solver = swig_import_helper()
    del swig_import_helper
else:
    import _solver
del version_info
try:
    _swig_property = property
except NameError:
    pass # Python < 2.2 doesn't have 'property'.
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
    if (name == "thisown"): return self.this.own(value)
    if (name == "this"):
        if type(value).__name__ == 'SwigPyObject':
            self.__dict__[name] = value
            return
    method = class_type.__swig_setmethods__.get(name,None)
    if method: return method(self,value)
    if (not static):
        self.__dict__[name] = value
    else:
        raise AttributeError("You cannot add attributes to %s" % self)

def _swig_setattr(self,class_type,name,value):
    return _swig_setattr_nondynamic(self,class_type,name,value,0)

def _swig_getattr(self,class_type,name):
    if (name == "thisown"): return self.this.own()
    method = class_type.__swig_getmethods__.get(name,None)
    if method: return method(self)
    raise AttributeError(name)

def _swig_repr(self):
    try: strthis = "proxy of " + self.this.__repr__()
    except: strthis = ""
    return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)

try:
    _object = object
    _newclass = 1
except AttributeError:
    class _object : pass
    _newclass = 0


class SwigPyIterator(_object):
    """Proxy of C++ swig::SwigPyIterator class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, SwigPyIterator, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, SwigPyIterator, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract")
    __repr__ = _swig_repr
    __swig_destroy__ = _solver.delete_SwigPyIterator
    __del__ = lambda self : None;
    def value(self):
        """value(SwigPyIterator self) -> PyObject *"""
        return _solver.SwigPyIterator_value(self)

    def incr(self, n=1):
        """
        incr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
        incr(SwigPyIterator self) -> SwigPyIterator
        """
        return _solver.SwigPyIterator_incr(self, n)

    def decr(self, n=1):
        """
        decr(SwigPyIterator self, size_t n=1) -> SwigPyIterator
        decr(SwigPyIterator self) -> SwigPyIterator
        """
        return _solver.SwigPyIterator_decr(self, n)

    def distance(self, *args):
        """distance(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t"""
        return _solver.SwigPyIterator_distance(self, *args)

    def equal(self, *args):
        """equal(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _solver.SwigPyIterator_equal(self, *args)

    def copy(self):
        """copy(SwigPyIterator self) -> SwigPyIterator"""
        return _solver.SwigPyIterator_copy(self)

    def next(self):
        """next(SwigPyIterator self) -> PyObject *"""
        return _solver.SwigPyIterator_next(self)

    def __next__(self):
        """__next__(SwigPyIterator self) -> PyObject *"""
        return _solver.SwigPyIterator___next__(self)

    def previous(self):
        """previous(SwigPyIterator self) -> PyObject *"""
        return _solver.SwigPyIterator_previous(self)

    def advance(self, *args):
        """advance(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _solver.SwigPyIterator_advance(self, *args)

    def __eq__(self, *args):
        """__eq__(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _solver.SwigPyIterator___eq__(self, *args)

    def __ne__(self, *args):
        """__ne__(SwigPyIterator self, SwigPyIterator x) -> bool"""
        return _solver.SwigPyIterator___ne__(self, *args)

    def __iadd__(self, *args):
        """__iadd__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _solver.SwigPyIterator___iadd__(self, *args)

    def __isub__(self, *args):
        """__isub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _solver.SwigPyIterator___isub__(self, *args)

    def __add__(self, *args):
        """__add__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator"""
        return _solver.SwigPyIterator___add__(self, *args)

    def __sub__(self, *args):
        """
        __sub__(SwigPyIterator self, ptrdiff_t n) -> SwigPyIterator
        __sub__(SwigPyIterator self, SwigPyIterator x) -> ptrdiff_t
        """
        return _solver.SwigPyIterator___sub__(self, *args)

    def __iter__(self): return self
SwigPyIterator_swigregister = _solver.SwigPyIterator_swigregister
SwigPyIterator_swigregister(SwigPyIterator)

GCC_VERSION = _solver.GCC_VERSION
class TestFailed:
  """
  TestFailed is used to raise an uniform exception in tests
  """
  __type = "TestFailed"
  def __init__(self,reason=""):
    self.reason = reason
  def type(self):
    return TestFailed.__type
  def what(self):
    return self.reason
  def __str__(self):
    return TestFailed.__type + ": " + self.reason
  def __lshift__(self,ch):
    self.reason += ch
    return self

import openturns.common
import openturns.wrapper
import openturns.typ
import openturns.statistics
import openturns.graph
import openturns.func
import openturns.geom
import openturns.diff
import openturns.optim
class SolverImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::SolverImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SolverImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SolverImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _solver.SolverImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(SolverImplementation self) -> OT::String"""
        return _solver.SolverImplementation_getClassName(self)

    def __eq__(self, *args):
        """__eq__(SolverImplementation self, SolverImplementation other) -> OT::Bool"""
        return _solver.SolverImplementation___eq__(self, *args)

    def __repr__(self):
        """__repr__(SolverImplementation self) -> OT::String"""
        return _solver.SolverImplementation___repr__(self)

    def solve(self, *args):
        """
        solve(SolverImplementation self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint) -> OT::NumericalScalar
        solve(SolverImplementation self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint, OT::NumericalScalar const infValue, 
            OT::NumericalScalar const supValue) -> OT::NumericalScalar
        """
        return _solver.SolverImplementation_solve(self, *args)

    def setAbsoluteError(self, *args):
        """setAbsoluteError(SolverImplementation self, OT::NumericalScalar const absoluteError)"""
        return _solver.SolverImplementation_setAbsoluteError(self, *args)

    def getAbsoluteError(self):
        """getAbsoluteError(SolverImplementation self) -> OT::NumericalScalar"""
        return _solver.SolverImplementation_getAbsoluteError(self)

    def setRelativeError(self, *args):
        """setRelativeError(SolverImplementation self, OT::NumericalScalar const relativeError)"""
        return _solver.SolverImplementation_setRelativeError(self, *args)

    def getRelativeError(self):
        """getRelativeError(SolverImplementation self) -> OT::NumericalScalar"""
        return _solver.SolverImplementation_getRelativeError(self)

    def setResidualError(self, *args):
        """setResidualError(SolverImplementation self, OT::NumericalScalar const residualError)"""
        return _solver.SolverImplementation_setResidualError(self, *args)

    def getResidualError(self):
        """getResidualError(SolverImplementation self) -> OT::NumericalScalar"""
        return _solver.SolverImplementation_getResidualError(self)

    def setMaximumFunctionEvaluation(self, *args):
        """setMaximumFunctionEvaluation(SolverImplementation self, OT::UnsignedLong const maximumFunctionEvaluation)"""
        return _solver.SolverImplementation_setMaximumFunctionEvaluation(self, *args)

    def getMaximumFunctionEvaluation(self):
        """getMaximumFunctionEvaluation(SolverImplementation self) -> OT::UnsignedLong"""
        return _solver.SolverImplementation_getMaximumFunctionEvaluation(self)

    def __init__(self, *args): 
        """
        __init__(OT::SolverImplementation self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" ), 
            OT::NumericalScalar const residualError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultResidualError" ), 
            OT::UnsignedLong const maximumFunctionEvaluation=OT::ResourceMap::GetAsUnsignedLong( "SolverImplementation-DefaultMaximumFunctionEvaluation" )) -> SolverImplementation
        __init__(OT::SolverImplementation self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" ), 
            OT::NumericalScalar const residualError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultResidualError" )) -> SolverImplementation
        __init__(OT::SolverImplementation self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" )) -> SolverImplementation
        __init__(OT::SolverImplementation self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" )) -> SolverImplementation
        __init__(OT::SolverImplementation self) -> SolverImplementation
        __init__(OT::SolverImplementation self, SolverImplementation other) -> SolverImplementation
        """
        this = _solver.new_SolverImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _solver.delete_SolverImplementation
    __del__ = lambda self : None;
SolverImplementation_swigregister = _solver.SolverImplementation_swigregister
SolverImplementation_swigregister(SolverImplementation)

def SolverImplementation_GetClassName():
  """SolverImplementation_GetClassName() -> OT::String"""
  return _solver.SolverImplementation_GetClassName()

class SolverImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::SolverImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, SolverImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, SolverImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::SolverImplementation)> self) -> SolverImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::SolverImplementation)> self, SolverImplementationPointer impl) -> SolverImplementationTypedInterfaceObject
        """
        this = _solver.new_SolverImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(SolverImplementationTypedInterfaceObject self) -> SolverImplementationPointer
        getImplementation(SolverImplementationTypedInterfaceObject self) -> SolverImplementationPointer
        """
        return _solver.SolverImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(SolverImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _solver.SolverImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(SolverImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _solver.SolverImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(SolverImplementationTypedInterfaceObject self, SolverImplementationTypedInterfaceObject other)"""
        return _solver.SolverImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(SolverImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _solver.SolverImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(SolverImplementationTypedInterfaceObject self) -> OT::String"""
        return _solver.SolverImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(SolverImplementationTypedInterfaceObject self, SolverImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _solver.SolverImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _solver.delete_SolverImplementationTypedInterfaceObject
    __del__ = lambda self : None;
SolverImplementationTypedInterfaceObject_swigregister = _solver.SolverImplementationTypedInterfaceObject_swigregister
SolverImplementationTypedInterfaceObject_swigregister(SolverImplementationTypedInterfaceObject)

class Solver(SolverImplementationTypedInterfaceObject):
    """Proxy of C++ OT::Solver class"""
    __swig_setmethods__ = {}
    for _s in [SolverImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Solver, name, value)
    __swig_getmethods__ = {}
    for _s in [SolverImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Solver, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _solver.Solver_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Solver self) -> OT::String"""
        return _solver.Solver_getClassName(self)

    def __eq__(self, *args):
        """__eq__(Solver self, Solver other) -> OT::Bool"""
        return _solver.Solver___eq__(self, *args)

    def __repr__(self):
        """__repr__(Solver self) -> OT::String"""
        return _solver.Solver___repr__(self)

    def solve(self, *args):
        """
        solve(Solver self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint) -> OT::NumericalScalar
        solve(Solver self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint, OT::NumericalScalar const infValue, 
            OT::NumericalScalar const supValue) -> OT::NumericalScalar
        """
        return _solver.Solver_solve(self, *args)

    def setAbsoluteError(self, *args):
        """setAbsoluteError(Solver self, OT::NumericalScalar const absoluteError)"""
        return _solver.Solver_setAbsoluteError(self, *args)

    def getAbsoluteError(self):
        """getAbsoluteError(Solver self) -> OT::NumericalScalar"""
        return _solver.Solver_getAbsoluteError(self)

    def setRelativeError(self, *args):
        """setRelativeError(Solver self, OT::NumericalScalar const relativeError)"""
        return _solver.Solver_setRelativeError(self, *args)

    def getRelativeError(self):
        """getRelativeError(Solver self) -> OT::NumericalScalar"""
        return _solver.Solver_getRelativeError(self)

    def setResidualError(self, *args):
        """setResidualError(Solver self, OT::NumericalScalar const residualError)"""
        return _solver.Solver_setResidualError(self, *args)

    def getResidualError(self):
        """getResidualError(Solver self) -> OT::NumericalScalar"""
        return _solver.Solver_getResidualError(self)

    def setMaximumFunctionEvaluation(self, *args):
        """setMaximumFunctionEvaluation(Solver self, OT::UnsignedLong const maximumFunctionEvaluation)"""
        return _solver.Solver_setMaximumFunctionEvaluation(self, *args)

    def getMaximumFunctionEvaluation(self):
        """getMaximumFunctionEvaluation(Solver self) -> OT::UnsignedLong"""
        return _solver.Solver_getMaximumFunctionEvaluation(self)

    def __init__(self, *args): 
        """
        __init__(OT::Solver self, SolverImplementationPointer p_implementation) -> Solver
        __init__(OT::Solver self, SolverImplementation implementation) -> Solver
        __init__(OT::Solver self) -> Solver
        __init__(OT::Solver self, OT::NumericalScalar const absoluteError, OT::NumericalScalar const relativeError, 
            OT::NumericalScalar const residualError, OT::UnsignedLong const maximumFunctionEvaluation) -> Solver
        __init__(OT::Solver self, Solver other) -> Solver
        """
        this = _solver.new_Solver(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _solver.delete_Solver
    __del__ = lambda self : None;
Solver_swigregister = _solver.Solver_swigregister
Solver_swigregister(Solver)

def Solver_GetClassName():
  """Solver_GetClassName() -> OT::String"""
  return _solver.Solver_GetClassName()

class Bisection(SolverImplementation):
    """Proxy of C++ OT::Bisection class"""
    __swig_setmethods__ = {}
    for _s in [SolverImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Bisection, name, value)
    __swig_getmethods__ = {}
    for _s in [SolverImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Bisection, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _solver.Bisection_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Bisection self) -> OT::String"""
        return _solver.Bisection_getClassName(self)

    def __repr__(self):
        """__repr__(Bisection self) -> OT::String"""
        return _solver.Bisection___repr__(self)

    def solve(self, *args):
        """
        solve(Bisection self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint) -> OT::NumericalScalar
        solve(Bisection self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint, OT::NumericalScalar const infValue, 
            OT::NumericalScalar const supValue) -> OT::NumericalScalar
        solve(Bisection self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint, OT::NumericalScalar const infValue, 
            OT::NumericalScalar const supValue) -> OT::NumericalScalar
        """
        return _solver.Bisection_solve(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Bisection self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" ), 
            OT::NumericalScalar const residualError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultResidualError" ), 
            OT::UnsignedLong const maximumFunctionEvaluation=OT::ResourceMap::GetAsUnsignedLong( "SolverImplementation-DefaultMaximumFunctionEvaluation" )) -> Bisection
        __init__(OT::Bisection self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" ), 
            OT::NumericalScalar const residualError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultResidualError" )) -> Bisection
        __init__(OT::Bisection self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" )) -> Bisection
        __init__(OT::Bisection self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" )) -> Bisection
        __init__(OT::Bisection self) -> Bisection
        __init__(OT::Bisection self, Bisection other) -> Bisection
        """
        this = _solver.new_Bisection(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _solver.delete_Bisection
    __del__ = lambda self : None;
Bisection_swigregister = _solver.Bisection_swigregister
Bisection_swigregister(Bisection)

def Bisection_GetClassName():
  """Bisection_GetClassName() -> OT::String"""
  return _solver.Bisection_GetClassName()

class Secant(SolverImplementation):
    """Proxy of C++ OT::Secant class"""
    __swig_setmethods__ = {}
    for _s in [SolverImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Secant, name, value)
    __swig_getmethods__ = {}
    for _s in [SolverImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Secant, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _solver.Secant_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Secant self) -> OT::String"""
        return _solver.Secant_getClassName(self)

    def __repr__(self):
        """__repr__(Secant self) -> OT::String"""
        return _solver.Secant___repr__(self)

    def solve(self, *args):
        """
        solve(Secant self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint) -> OT::NumericalScalar
        solve(Secant self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint, OT::NumericalScalar const infValue, 
            OT::NumericalScalar const supValue) -> OT::NumericalScalar
        solve(Secant self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint, OT::NumericalScalar const infValue, 
            OT::NumericalScalar const supValue) -> OT::NumericalScalar
        """
        return _solver.Secant_solve(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Secant self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" ), 
            OT::NumericalScalar const residualError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultResidualError" ), 
            OT::UnsignedLong const maximumFunctionEvaluation=OT::ResourceMap::GetAsUnsignedLong( "SolverImplementation-DefaultMaximumFunctionEvaluation" )) -> Secant
        __init__(OT::Secant self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" ), 
            OT::NumericalScalar const residualError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultResidualError" )) -> Secant
        __init__(OT::Secant self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" )) -> Secant
        __init__(OT::Secant self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" )) -> Secant
        __init__(OT::Secant self) -> Secant
        __init__(OT::Secant self, Secant other) -> Secant
        """
        this = _solver.new_Secant(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _solver.delete_Secant
    __del__ = lambda self : None;
Secant_swigregister = _solver.Secant_swigregister
Secant_swigregister(Secant)

def Secant_GetClassName():
  """Secant_GetClassName() -> OT::String"""
  return _solver.Secant_GetClassName()

class Brent(SolverImplementation):
    """Proxy of C++ OT::Brent class"""
    __swig_setmethods__ = {}
    for _s in [SolverImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, Brent, name, value)
    __swig_getmethods__ = {}
    for _s in [SolverImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, Brent, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _solver.Brent_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Brent self) -> OT::String"""
        return _solver.Brent_getClassName(self)

    def __repr__(self):
        """__repr__(Brent self) -> OT::String"""
        return _solver.Brent___repr__(self)

    def solve(self, *args):
        """
        solve(Brent self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint) -> OT::NumericalScalar
        solve(Brent self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint, OT::NumericalScalar const infValue, 
            OT::NumericalScalar const supValue) -> OT::NumericalScalar
        solve(Brent self, NumericalMathFunction function, OT::NumericalScalar const value, OT::NumericalScalar const infPoint, 
            OT::NumericalScalar const supPoint, OT::NumericalScalar const infValue, 
            OT::NumericalScalar const supValue) -> OT::NumericalScalar
        """
        return _solver.Brent_solve(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::Brent self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" ), 
            OT::NumericalScalar const residualError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultResidualError" ), 
            OT::UnsignedLong const maximumFunctionEvaluation=OT::ResourceMap::GetAsUnsignedLong( "SolverImplementation-DefaultMaximumFunctionEvaluation" )) -> Brent
        __init__(OT::Brent self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" ), 
            OT::NumericalScalar const residualError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultResidualError" )) -> Brent
        __init__(OT::Brent self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" ), 
            OT::NumericalScalar const relativeError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultRelativeError" )) -> Brent
        __init__(OT::Brent self, OT::NumericalScalar const absoluteError=OT::ResourceMap::GetAsNumericalScalar( "SolverImplementation-DefaultAbsoluteError" )) -> Brent
        __init__(OT::Brent self) -> Brent
        __init__(OT::Brent self, Brent other) -> Brent
        """
        this = _solver.new_Brent(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _solver.delete_Brent
    __del__ = lambda self : None;
Brent_swigregister = _solver.Brent_swigregister
Brent_swigregister(Brent)

def Brent_GetClassName():
  """Brent_GetClassName() -> OT::String"""
  return _solver.Brent_GetClassName()

class ODESolverImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::ODESolverImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ODESolverImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ODESolverImplementation, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract")
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _solver.ODESolverImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ODESolverImplementation self) -> OT::String"""
        return _solver.ODESolverImplementation_getClassName(self)

    def __repr__(self):
        """__repr__(ODESolverImplementation self) -> OT::String"""
        return _solver.ODESolverImplementation___repr__(self)

    def solve(self, *args):
        """solve(ODESolverImplementation self, NumericalPoint initialState, NumericalPoint timeGrid) -> NumericalSample"""
        return _solver.ODESolverImplementation_solve(self, *args)

    def setTransitionFunction(self, *args):
        """setTransitionFunction(ODESolverImplementation self, DynamicalFunction transitionFunction)"""
        return _solver.ODESolverImplementation_setTransitionFunction(self, *args)

    def getTransitionFunction(self):
        """getTransitionFunction(ODESolverImplementation self) -> DynamicalFunction"""
        return _solver.ODESolverImplementation_getTransitionFunction(self)

    __swig_destroy__ = _solver.delete_ODESolverImplementation
    __del__ = lambda self : None;
ODESolverImplementation_swigregister = _solver.ODESolverImplementation_swigregister
ODESolverImplementation_swigregister(ODESolverImplementation)

def ODESolverImplementation_GetClassName():
  """ODESolverImplementation_GetClassName() -> OT::String"""
  return _solver.ODESolverImplementation_GetClassName()

class ODESolverImplementationTypedInterfaceObject(openturns.common.InterfaceObject):
    """Proxy of C++ OT::TypedInterfaceObject<(OT::ODESolverImplementation)> class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ODESolverImplementationTypedInterfaceObject, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.InterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ODESolverImplementationTypedInterfaceObject, name)
    __repr__ = _swig_repr
    def __init__(self, *args): 
        """
        __init__(OT::TypedInterfaceObject<(OT::ODESolverImplementation)> self) -> ODESolverImplementationTypedInterfaceObject
        __init__(OT::TypedInterfaceObject<(OT::ODESolverImplementation)> self, OT::TypedInterfaceObject< OT::ODESolverImplementation >::Implementation const & impl) -> ODESolverImplementationTypedInterfaceObject
        """
        this = _solver.new_ODESolverImplementationTypedInterfaceObject(*args)
        try: self.this.append(this)
        except: self.this = this
    def getImplementation(self, *args):
        """
        getImplementation(ODESolverImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::ODESolverImplementation >::Implementation
        getImplementation(ODESolverImplementationTypedInterfaceObject self) -> OT::TypedInterfaceObject< OT::ODESolverImplementation >::Implementation const &
        """
        return _solver.ODESolverImplementationTypedInterfaceObject_getImplementation(self, *args)

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(ODESolverImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _solver.ODESolverImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(ODESolverImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _solver.ODESolverImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(ODESolverImplementationTypedInterfaceObject self, ODESolverImplementationTypedInterfaceObject other)"""
        return _solver.ODESolverImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(ODESolverImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _solver.ODESolverImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(ODESolverImplementationTypedInterfaceObject self) -> OT::String"""
        return _solver.ODESolverImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(ODESolverImplementationTypedInterfaceObject self, ODESolverImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _solver.ODESolverImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _solver.delete_ODESolverImplementationTypedInterfaceObject
    __del__ = lambda self : None;
ODESolverImplementationTypedInterfaceObject_swigregister = _solver.ODESolverImplementationTypedInterfaceObject_swigregister
ODESolverImplementationTypedInterfaceObject_swigregister(ODESolverImplementationTypedInterfaceObject)

class ODESolver(ODESolverImplementationTypedInterfaceObject):
    """Proxy of C++ OT::ODESolver class"""
    __swig_setmethods__ = {}
    for _s in [ODESolverImplementationTypedInterfaceObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ODESolver, name, value)
    __swig_getmethods__ = {}
    for _s in [ODESolverImplementationTypedInterfaceObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ODESolver, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _solver.ODESolver_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ODESolver self) -> OT::String"""
        return _solver.ODESolver_getClassName(self)

    def __repr__(self):
        """__repr__(ODESolver self) -> OT::String"""
        return _solver.ODESolver___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ODESolver self, OT::String const & offset="") -> OT::String
        __str__(ODESolver self) -> OT::String
        """
        return _solver.ODESolver___str__(self, offset)

    def solve(self, *args):
        """solve(ODESolver self, NumericalPoint initialState, NumericalPoint timeGrid) -> NumericalSample"""
        return _solver.ODESolver_solve(self, *args)

    def setTransitionFunction(self, *args):
        """setTransitionFunction(ODESolver self, DynamicalFunction transitionFunction)"""
        return _solver.ODESolver_setTransitionFunction(self, *args)

    def getTransitionFunction(self):
        """getTransitionFunction(ODESolver self) -> DynamicalFunction"""
        return _solver.ODESolver_getTransitionFunction(self)

    def __init__(self, *args): 
        """
        __init__(OT::ODESolver self) -> ODESolver
        __init__(OT::ODESolver self, DynamicalFunction transitionFunction) -> ODESolver
        __init__(OT::ODESolver self, OT::ODESolver::Implementation const & p_implementation) -> ODESolver
        __init__(OT::ODESolver self, ODESolverImplementation implementation) -> ODESolver
        __init__(OT::ODESolver self, ODESolver other) -> ODESolver
        """
        this = _solver.new_ODESolver(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _solver.delete_ODESolver
    __del__ = lambda self : None;
ODESolver_swigregister = _solver.ODESolver_swigregister
ODESolver_swigregister(ODESolver)

def ODESolver_GetClassName():
  """ODESolver_GetClassName() -> OT::String"""
  return _solver.ODESolver_GetClassName()

class RungeKutta(ODESolverImplementation):
    """Proxy of C++ OT::RungeKutta class"""
    __swig_setmethods__ = {}
    for _s in [ODESolverImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, RungeKutta, name, value)
    __swig_getmethods__ = {}
    for _s in [ODESolverImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, RungeKutta, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _solver.RungeKutta_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(RungeKutta self) -> OT::String"""
        return _solver.RungeKutta_getClassName(self)

    def __repr__(self):
        """__repr__(RungeKutta self) -> OT::String"""
        return _solver.RungeKutta___repr__(self)

    def solve(self, *args):
        """solve(RungeKutta self, NumericalPoint initialState, NumericalPoint timeGrid) -> NumericalSample"""
        return _solver.RungeKutta_solve(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::RungeKutta self) -> RungeKutta
        __init__(OT::RungeKutta self, DynamicalFunction transitionFunction) -> RungeKutta
        __init__(OT::RungeKutta self, RungeKutta other) -> RungeKutta
        """
        this = _solver.new_RungeKutta(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _solver.delete_RungeKutta
    __del__ = lambda self : None;
RungeKutta_swigregister = _solver.RungeKutta_swigregister
RungeKutta_swigregister(RungeKutta)

def RungeKutta_GetClassName():
  """RungeKutta_GetClassName() -> OT::String"""
  return _solver.RungeKutta_GetClassName()

# This file is compatible with both classic and new-style classes.