This file is indexed.

/usr/share/pyshared/openturns/algo.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
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
# 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.


"""
Approximation algorithms.
"""


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('_algo', [dirname(__file__)])
        except ImportError:
            import _algo
            return _algo
        if fp is not None:
            try:
                _mod = imp.load_module('_algo', fp, pathname, description)
            finally:
                fp.close()
            return _mod
    _algo = swig_import_helper()
    del swig_import_helper
else:
    import _algo
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__ = _algo.delete_SwigPyIterator
    __del__ = lambda self : None;
    def value(self):
        """value(SwigPyIterator self) -> PyObject *"""
        return _algo.SwigPyIterator_value(self)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

GCC_VERSION = _algo.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.func
import openturns.geom
import openturns.graph
import openturns.statistics
class ApproximationAlgorithmImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::ApproximationAlgorithmImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ApproximationAlgorithmImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ApproximationAlgorithmImplementation, name)
    def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined - class is abstract")
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _algo.ApproximationAlgorithmImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ApproximationAlgorithmImplementation self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementation_getClassName(self)

    def getX(self):
        """getX(ApproximationAlgorithmImplementation self) -> NumericalSample"""
        return _algo.ApproximationAlgorithmImplementation_getX(self)

    def getY(self):
        """getY(ApproximationAlgorithmImplementation self) -> NumericalSample"""
        return _algo.ApproximationAlgorithmImplementation_getY(self)

    def getWeight(self):
        """getWeight(ApproximationAlgorithmImplementation self) -> NumericalPoint"""
        return _algo.ApproximationAlgorithmImplementation_getWeight(self)

    def getPsi(self):
        """getPsi(ApproximationAlgorithmImplementation self) -> Basis"""
        return _algo.ApproximationAlgorithmImplementation_getPsi(self)

    def __repr__(self):
        """__repr__(ApproximationAlgorithmImplementation self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ApproximationAlgorithmImplementation self, OT::String const & offset="") -> OT::String
        __str__(ApproximationAlgorithmImplementation self) -> OT::String
        """
        return _algo.ApproximationAlgorithmImplementation___str__(self, offset)

    def run(self):
        """run(ApproximationAlgorithmImplementation self)"""
        return _algo.ApproximationAlgorithmImplementation_run(self)

    def getCoefficients(self):
        """getCoefficients(ApproximationAlgorithmImplementation self) -> NumericalPoint"""
        return _algo.ApproximationAlgorithmImplementation_getCoefficients(self)

    def getResidual(self):
        """getResidual(ApproximationAlgorithmImplementation self) -> OT::NumericalScalar"""
        return _algo.ApproximationAlgorithmImplementation_getResidual(self)

    def getRelativeError(self):
        """getRelativeError(ApproximationAlgorithmImplementation self) -> OT::NumericalScalar"""
        return _algo.ApproximationAlgorithmImplementation_getRelativeError(self)

    def setVerbose(self, *args):
        """setVerbose(ApproximationAlgorithmImplementation self, OT::Bool const verbose)"""
        return _algo.ApproximationAlgorithmImplementation_setVerbose(self, *args)

    def getVerbose(self):
        """getVerbose(ApproximationAlgorithmImplementation self) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementation_getVerbose(self)

    __swig_destroy__ = _algo.delete_ApproximationAlgorithmImplementation
    __del__ = lambda self : None;
ApproximationAlgorithmImplementation_swigregister = _algo.ApproximationAlgorithmImplementation_swigregister
ApproximationAlgorithmImplementation_swigregister(ApproximationAlgorithmImplementation)

def ApproximationAlgorithmImplementation_GetClassName():
  """ApproximationAlgorithmImplementation_GetClassName() -> OT::String"""
  return _algo.ApproximationAlgorithmImplementation_GetClassName()

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

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(ApproximationAlgorithmImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _algo.ApproximationAlgorithmImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(ApproximationAlgorithmImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _algo.ApproximationAlgorithmImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(ApproximationAlgorithmImplementationTypedInterfaceObject self, ApproximationAlgorithmImplementationTypedInterfaceObject other)"""
        return _algo.ApproximationAlgorithmImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(ApproximationAlgorithmImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _algo.ApproximationAlgorithmImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(ApproximationAlgorithmImplementationTypedInterfaceObject self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(ApproximationAlgorithmImplementationTypedInterfaceObject self, ApproximationAlgorithmImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _algo.delete_ApproximationAlgorithmImplementationTypedInterfaceObject
    __del__ = lambda self : None;
ApproximationAlgorithmImplementationTypedInterfaceObject_swigregister = _algo.ApproximationAlgorithmImplementationTypedInterfaceObject_swigregister
ApproximationAlgorithmImplementationTypedInterfaceObject_swigregister(ApproximationAlgorithmImplementationTypedInterfaceObject)

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ApproximationAlgorithm self) -> OT::String"""
        return _algo.ApproximationAlgorithm_getClassName(self)

    def getX(self):
        """getX(ApproximationAlgorithm self) -> NumericalSample"""
        return _algo.ApproximationAlgorithm_getX(self)

    def getY(self):
        """getY(ApproximationAlgorithm self) -> NumericalSample"""
        return _algo.ApproximationAlgorithm_getY(self)

    def getWeight(self):
        """getWeight(ApproximationAlgorithm self) -> NumericalPoint"""
        return _algo.ApproximationAlgorithm_getWeight(self)

    def getPsi(self):
        """getPsi(ApproximationAlgorithm self) -> Basis"""
        return _algo.ApproximationAlgorithm_getPsi(self)

    def setVerbose(self, *args):
        """setVerbose(ApproximationAlgorithm self, OT::Bool const verbose)"""
        return _algo.ApproximationAlgorithm_setVerbose(self, *args)

    def getVerbose(self):
        """getVerbose(ApproximationAlgorithm self) -> OT::Bool"""
        return _algo.ApproximationAlgorithm_getVerbose(self)

    def __repr__(self):
        """__repr__(ApproximationAlgorithm self) -> OT::String"""
        return _algo.ApproximationAlgorithm___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ApproximationAlgorithm self, OT::String const & offset="") -> OT::String
        __str__(ApproximationAlgorithm self) -> OT::String
        """
        return _algo.ApproximationAlgorithm___str__(self, offset)

    def run(self):
        """run(ApproximationAlgorithm self)"""
        return _algo.ApproximationAlgorithm_run(self)

    def getCoefficients(self):
        """getCoefficients(ApproximationAlgorithm self) -> NumericalPoint"""
        return _algo.ApproximationAlgorithm_getCoefficients(self)

    def getResidual(self):
        """getResidual(ApproximationAlgorithm self) -> OT::NumericalScalar"""
        return _algo.ApproximationAlgorithm_getResidual(self)

    def getRelativeError(self):
        """getRelativeError(ApproximationAlgorithm self) -> OT::NumericalScalar"""
        return _algo.ApproximationAlgorithm_getRelativeError(self)

    def __init__(self, *args): 
        """
        __init__(OT::ApproximationAlgorithm self, ApproximationAlgorithmImplementation implementation) -> ApproximationAlgorithm
        __init__(OT::ApproximationAlgorithm self, ApproximationAlgorithmImplementationPointer p_implementation) -> ApproximationAlgorithm
        __init__(OT::ApproximationAlgorithm self, ApproximationAlgorithm other) -> ApproximationAlgorithm
        """
        this = _algo.new_ApproximationAlgorithm(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_ApproximationAlgorithm
    __del__ = lambda self : None;
ApproximationAlgorithm_swigregister = _algo.ApproximationAlgorithm_swigregister
ApproximationAlgorithm_swigregister(ApproximationAlgorithm)

def ApproximationAlgorithm_GetClassName():
  """ApproximationAlgorithm_GetClassName() -> OT::String"""
  return _algo.ApproximationAlgorithm_GetClassName()

class ApproximationAlgorithmImplementationFactory(openturns.common.PersistentObject):
    """Proxy of C++ OT::ApproximationAlgorithmImplementationFactory class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ApproximationAlgorithmImplementationFactory, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ApproximationAlgorithmImplementationFactory, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _algo.ApproximationAlgorithmImplementationFactory_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ApproximationAlgorithmImplementationFactory self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementationFactory_getClassName(self)

    def build(self, *args):
        """
        build(ApproximationAlgorithmImplementationFactory self, NumericalSample x, NumericalSample y, Basis psi) -> ApproximationAlgorithmImplementation
        build(ApproximationAlgorithmImplementationFactory self, NumericalSample x, NumericalSample y, NumericalPoint weight, Basis psi) -> ApproximationAlgorithmImplementation
        """
        return _algo.ApproximationAlgorithmImplementationFactory_build(self, *args)

    def __repr__(self):
        """__repr__(ApproximationAlgorithmImplementationFactory self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementationFactory___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::ApproximationAlgorithmImplementationFactory self) -> ApproximationAlgorithmImplementationFactory
        __init__(OT::ApproximationAlgorithmImplementationFactory self, ApproximationAlgorithmImplementationFactory other) -> ApproximationAlgorithmImplementationFactory
        """
        this = _algo.new_ApproximationAlgorithmImplementationFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_ApproximationAlgorithmImplementationFactory
    __del__ = lambda self : None;
ApproximationAlgorithmImplementationFactory_swigregister = _algo.ApproximationAlgorithmImplementationFactory_swigregister
ApproximationAlgorithmImplementationFactory_swigregister(ApproximationAlgorithmImplementationFactory)

def ApproximationAlgorithmImplementationFactory_GetClassName():
  """ApproximationAlgorithmImplementationFactory_GetClassName() -> OT::String"""
  return _algo.ApproximationAlgorithmImplementationFactory_GetClassName()

class ClassifierImplementation(openturns.common.PersistentObject):
    """Proxy of C++ OT::ClassifierImplementation class"""
    __swig_setmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ClassifierImplementation, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.common.PersistentObject]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ClassifierImplementation, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _algo.ClassifierImplementation_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ClassifierImplementation self) -> OT::String"""
        return _algo.ClassifierImplementation_getClassName(self)

    def classify(self, *args):
        """
        classify(ClassifierImplementation self, NumericalPoint inP) -> OT::UnsignedLong
        classify(ClassifierImplementation self, NumericalSample inS) -> Indices
        """
        return _algo.ClassifierImplementation_classify(self, *args)

    def grade(self, *args):
        """
        grade(ClassifierImplementation self, NumericalPoint inP, OT::UnsignedLong outC) -> OT::NumericalScalar
        grade(ClassifierImplementation self, NumericalSample inS, Indices outC) -> NumericalPoint
        """
        return _algo.ClassifierImplementation_grade(self, *args)

    def __repr__(self):
        """__repr__(ClassifierImplementation self) -> OT::String"""
        return _algo.ClassifierImplementation___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ClassifierImplementation self, OT::String const & offset="") -> OT::String
        __str__(ClassifierImplementation self) -> OT::String
        """
        return _algo.ClassifierImplementation___str__(self, offset)

    def setVerbose(self, *args):
        """setVerbose(ClassifierImplementation self, OT::Bool const verbose)"""
        return _algo.ClassifierImplementation_setVerbose(self, *args)

    def getVerbose(self):
        """getVerbose(ClassifierImplementation self) -> OT::Bool"""
        return _algo.ClassifierImplementation_getVerbose(self)

    def getDimension(self):
        """getDimension(ClassifierImplementation self) -> OT::UnsignedLong"""
        return _algo.ClassifierImplementation_getDimension(self)

    def __init__(self, *args): 
        """
        __init__(OT::ClassifierImplementation self) -> ClassifierImplementation
        __init__(OT::ClassifierImplementation self, NumericalSample inputSample, Indices outClasses) -> ClassifierImplementation
        __init__(OT::ClassifierImplementation self, ClassifierImplementation other) -> ClassifierImplementation
        """
        this = _algo.new_ClassifierImplementation(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_ClassifierImplementation
    __del__ = lambda self : None;
ClassifierImplementation_swigregister = _algo.ClassifierImplementation_swigregister
ClassifierImplementation_swigregister(ClassifierImplementation)

def ClassifierImplementation_GetClassName():
  """ClassifierImplementation_GetClassName() -> OT::String"""
  return _algo.ClassifierImplementation_GetClassName()

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

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(ClassifierImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _algo.ClassifierImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(ClassifierImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _algo.ClassifierImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(ClassifierImplementationTypedInterfaceObject self, ClassifierImplementationTypedInterfaceObject other)"""
        return _algo.ClassifierImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(ClassifierImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _algo.ClassifierImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(ClassifierImplementationTypedInterfaceObject self) -> OT::String"""
        return _algo.ClassifierImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(ClassifierImplementationTypedInterfaceObject self, ClassifierImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _algo.ClassifierImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _algo.delete_ClassifierImplementationTypedInterfaceObject
    __del__ = lambda self : None;
ClassifierImplementationTypedInterfaceObject_swigregister = _algo.ClassifierImplementationTypedInterfaceObject_swigregister
ClassifierImplementationTypedInterfaceObject_swigregister(ClassifierImplementationTypedInterfaceObject)

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(Classifier self) -> OT::String"""
        return _algo.Classifier_getClassName(self)

    def classify(self, *args):
        """
        classify(Classifier self, NumericalPoint inP) -> OT::UnsignedLong
        classify(Classifier self, NumericalSample inS) -> Indices
        """
        return _algo.Classifier_classify(self, *args)

    def grade(self, *args):
        """
        grade(Classifier self, NumericalPoint inP, OT::UnsignedLong outC) -> OT::NumericalScalar
        grade(Classifier self, NumericalSample inS, Indices outC) -> NumericalPoint
        """
        return _algo.Classifier_grade(self, *args)

    def getDimension(self):
        """getDimension(Classifier self) -> OT::UnsignedLong"""
        return _algo.Classifier_getDimension(self)

    def setVerbose(self, *args):
        """setVerbose(Classifier self, OT::Bool const verbose)"""
        return _algo.Classifier_setVerbose(self, *args)

    def getVerbose(self):
        """getVerbose(Classifier self) -> OT::Bool"""
        return _algo.Classifier_getVerbose(self)

    def __repr__(self):
        """__repr__(Classifier self) -> OT::String"""
        return _algo.Classifier___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(Classifier self, OT::String const & offset="") -> OT::String
        __str__(Classifier self) -> OT::String
        """
        return _algo.Classifier___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::Classifier self) -> Classifier
        __init__(OT::Classifier self, ClassifierImplementation implementation) -> Classifier
        __init__(OT::Classifier self, OT::Classifier::Implementation const & p_implementation) -> Classifier
        __init__(OT::Classifier self, NumericalSample inS, Indices outC) -> Classifier
        __init__(OT::Classifier self, Classifier other) -> Classifier
        """
        this = _algo.new_Classifier(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_Classifier
    __del__ = lambda self : None;
Classifier_swigregister = _algo.Classifier_swigregister
Classifier_swigregister(Classifier)

def Classifier_GetClassName():
  """Classifier_GetClassName() -> OT::String"""
  return _algo.Classifier_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(FittingAlgorithmImplementation self) -> OT::String"""
        return _algo.FittingAlgorithmImplementation_getClassName(self)

    def __repr__(self):
        """__repr__(FittingAlgorithmImplementation self) -> OT::String"""
        return _algo.FittingAlgorithmImplementation___repr__(self)

    def run(self, *args):
        """run(FittingAlgorithmImplementation self, NumericalSample x, NumericalSample y, Basis basis) -> OT::NumericalScalar"""
        return _algo.FittingAlgorithmImplementation_run(self, *args)

    __swig_destroy__ = _algo.delete_FittingAlgorithmImplementation
    __del__ = lambda self : None;
FittingAlgorithmImplementation_swigregister = _algo.FittingAlgorithmImplementation_swigregister
FittingAlgorithmImplementation_swigregister(FittingAlgorithmImplementation)

def FittingAlgorithmImplementation_GetClassName():
  """FittingAlgorithmImplementation_GetClassName() -> OT::String"""
  return _algo.FittingAlgorithmImplementation_GetClassName()

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

    def getImplementationAsPersistentObject(self):
        """getImplementationAsPersistentObject(FittingAlgorithmImplementationTypedInterfaceObject self) -> PersistentObjectPointer"""
        return _algo.FittingAlgorithmImplementationTypedInterfaceObject_getImplementationAsPersistentObject(self)

    def setImplementationAsPersistentObject(self, *args):
        """setImplementationAsPersistentObject(FittingAlgorithmImplementationTypedInterfaceObject self, PersistentObjectPointer obj)"""
        return _algo.FittingAlgorithmImplementationTypedInterfaceObject_setImplementationAsPersistentObject(self, *args)

    def swap(self, *args):
        """swap(FittingAlgorithmImplementationTypedInterfaceObject self, FittingAlgorithmImplementationTypedInterfaceObject other)"""
        return _algo.FittingAlgorithmImplementationTypedInterfaceObject_swap(self, *args)

    def setName(self, *args):
        """setName(FittingAlgorithmImplementationTypedInterfaceObject self, OT::String const & name)"""
        return _algo.FittingAlgorithmImplementationTypedInterfaceObject_setName(self, *args)

    def getName(self):
        """getName(FittingAlgorithmImplementationTypedInterfaceObject self) -> OT::String"""
        return _algo.FittingAlgorithmImplementationTypedInterfaceObject_getName(self)

    def __eq__(self, *args):
        """__eq__(FittingAlgorithmImplementationTypedInterfaceObject self, FittingAlgorithmImplementationTypedInterfaceObject other) -> OT::Bool"""
        return _algo.FittingAlgorithmImplementationTypedInterfaceObject___eq__(self, *args)

    __swig_destroy__ = _algo.delete_FittingAlgorithmImplementationTypedInterfaceObject
    __del__ = lambda self : None;
FittingAlgorithmImplementationTypedInterfaceObject_swigregister = _algo.FittingAlgorithmImplementationTypedInterfaceObject_swigregister
FittingAlgorithmImplementationTypedInterfaceObject_swigregister(FittingAlgorithmImplementationTypedInterfaceObject)

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(FittingAlgorithm self) -> OT::String"""
        return _algo.FittingAlgorithm_getClassName(self)

    def __repr__(self):
        """__repr__(FittingAlgorithm self) -> OT::String"""
        return _algo.FittingAlgorithm___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(FittingAlgorithm self, OT::String const & offset="") -> OT::String
        __str__(FittingAlgorithm self) -> OT::String
        """
        return _algo.FittingAlgorithm___str__(self, offset)

    def run(self, *args):
        """run(FittingAlgorithm self, NumericalSample x, NumericalSample y, Basis basis) -> OT::NumericalScalar"""
        return _algo.FittingAlgorithm_run(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::FittingAlgorithm self) -> FittingAlgorithm
        __init__(OT::FittingAlgorithm self, OT::FittingAlgorithm::Implementation const & p_implementation) -> FittingAlgorithm
        __init__(OT::FittingAlgorithm self, FittingAlgorithmImplementation implementation) -> FittingAlgorithm
        __init__(OT::FittingAlgorithm self, FittingAlgorithm other) -> FittingAlgorithm
        """
        this = _algo.new_FittingAlgorithm(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_FittingAlgorithm
    __del__ = lambda self : None;
FittingAlgorithm_swigregister = _algo.FittingAlgorithm_swigregister
FittingAlgorithm_swigregister(FittingAlgorithm)

def FittingAlgorithm_GetClassName():
  """FittingAlgorithm_GetClassName() -> OT::String"""
  return _algo.FittingAlgorithm_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(KFold self) -> OT::String"""
        return _algo.KFold_getClassName(self)

    def __repr__(self):
        """__repr__(KFold self) -> OT::String"""
        return _algo.KFold___repr__(self)

    def run(self, *args):
        """run(KFold self, NumericalSample x, NumericalSample y, Basis basis) -> OT::NumericalScalar"""
        return _algo.KFold_run(self, *args)

    def setK(self, *args):
        """setK(KFold self, OT::UnsignedLong const p)"""
        return _algo.KFold_setK(self, *args)

    def getK(self):
        """getK(KFold self) -> OT::UnsignedLong"""
        return _algo.KFold_getK(self)

    def __init__(self, *args): 
        """
        __init__(OT::KFold self, OT::UnsignedLong const k=OT::ResourceMap::GetAsUnsignedLong( "KFold-DefaultK" )) -> KFold
        __init__(OT::KFold self) -> KFold
        __init__(OT::KFold self, KFold other) -> KFold
        """
        this = _algo.new_KFold(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_KFold
    __del__ = lambda self : None;
KFold_swigregister = _algo.KFold_swigregister
KFold_swigregister(KFold)

def KFold_GetClassName():
  """KFold_GetClassName() -> OT::String"""
  return _algo.KFold_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(CorrectedLeaveOneOut self) -> OT::String"""
        return _algo.CorrectedLeaveOneOut_getClassName(self)

    def __repr__(self):
        """__repr__(CorrectedLeaveOneOut self) -> OT::String"""
        return _algo.CorrectedLeaveOneOut___repr__(self)

    def run(self, *args):
        """run(CorrectedLeaveOneOut self, NumericalSample x, NumericalSample y, Basis basis) -> OT::NumericalScalar"""
        return _algo.CorrectedLeaveOneOut_run(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::CorrectedLeaveOneOut self) -> CorrectedLeaveOneOut
        __init__(OT::CorrectedLeaveOneOut self, CorrectedLeaveOneOut other) -> CorrectedLeaveOneOut
        """
        this = _algo.new_CorrectedLeaveOneOut(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_CorrectedLeaveOneOut
    __del__ = lambda self : None;
CorrectedLeaveOneOut_swigregister = _algo.CorrectedLeaveOneOut_swigregister
CorrectedLeaveOneOut_swigregister(CorrectedLeaveOneOut)

def CorrectedLeaveOneOut_GetClassName():
  """CorrectedLeaveOneOut_GetClassName() -> OT::String"""
  return _algo.CorrectedLeaveOneOut_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LeastSquaresMetaModelSelection self) -> OT::String"""
        return _algo.LeastSquaresMetaModelSelection_getClassName(self)

    def __repr__(self):
        """__repr__(LeastSquaresMetaModelSelection self) -> OT::String"""
        return _algo.LeastSquaresMetaModelSelection___repr__(self)

    def setBasisSequenceFactory(self, *args):
        """setBasisSequenceFactory(LeastSquaresMetaModelSelection self, BasisSequenceFactory basisSequenceFactory)"""
        return _algo.LeastSquaresMetaModelSelection_setBasisSequenceFactory(self, *args)

    def getBasisSequenceFactory(self):
        """getBasisSequenceFactory(LeastSquaresMetaModelSelection self) -> BasisSequenceFactory"""
        return _algo.LeastSquaresMetaModelSelection_getBasisSequenceFactory(self)

    def setFittingAlgorithm(self, *args):
        """setFittingAlgorithm(LeastSquaresMetaModelSelection self, FittingAlgorithm fittingAlgorithm)"""
        return _algo.LeastSquaresMetaModelSelection_setFittingAlgorithm(self, *args)

    def getFittingAlgorithm(self):
        """getFittingAlgorithm(LeastSquaresMetaModelSelection self) -> FittingAlgorithm"""
        return _algo.LeastSquaresMetaModelSelection_getFittingAlgorithm(self)

    def run(self):
        """run(LeastSquaresMetaModelSelection self)"""
        return _algo.LeastSquaresMetaModelSelection_run(self)

    def __init__(self, *args): 
        """
        __init__(OT::LeastSquaresMetaModelSelection self, NumericalSample x, NumericalSample y, Basis psi, BasisSequenceFactory basisSequenceFactory=OT::LAR(), 
            FittingAlgorithm fittingAlgorithm=OT::CorrectedLeaveOneOut()) -> LeastSquaresMetaModelSelection
        __init__(OT::LeastSquaresMetaModelSelection self, NumericalSample x, NumericalSample y, Basis psi, BasisSequenceFactory basisSequenceFactory=OT::LAR()) -> LeastSquaresMetaModelSelection
        __init__(OT::LeastSquaresMetaModelSelection self, NumericalSample x, NumericalSample y, Basis psi) -> LeastSquaresMetaModelSelection
        __init__(OT::LeastSquaresMetaModelSelection self, NumericalSample x, NumericalSample y, NumericalPoint weight, Basis psi, BasisSequenceFactory basisSequenceFactory=OT::LAR(), 
            FittingAlgorithm fittingAlgorithm=OT::CorrectedLeaveOneOut()) -> LeastSquaresMetaModelSelection
        __init__(OT::LeastSquaresMetaModelSelection self, NumericalSample x, NumericalSample y, NumericalPoint weight, Basis psi, BasisSequenceFactory basisSequenceFactory=OT::LAR()) -> LeastSquaresMetaModelSelection
        __init__(OT::LeastSquaresMetaModelSelection self, NumericalSample x, NumericalSample y, NumericalPoint weight, Basis psi) -> LeastSquaresMetaModelSelection
        __init__(OT::LeastSquaresMetaModelSelection self, LeastSquaresMetaModelSelection other) -> LeastSquaresMetaModelSelection
        """
        this = _algo.new_LeastSquaresMetaModelSelection(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_LeastSquaresMetaModelSelection
    __del__ = lambda self : None;
LeastSquaresMetaModelSelection_swigregister = _algo.LeastSquaresMetaModelSelection_swigregister
LeastSquaresMetaModelSelection_swigregister(LeastSquaresMetaModelSelection)

def LeastSquaresMetaModelSelection_GetClassName():
  """LeastSquaresMetaModelSelection_GetClassName() -> OT::String"""
  return _algo.LeastSquaresMetaModelSelection_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(LeastSquaresMetaModelSelectionFactory self) -> OT::String"""
        return _algo.LeastSquaresMetaModelSelectionFactory_getClassName(self)

    def getBasisSequenceFactory(self):
        """getBasisSequenceFactory(LeastSquaresMetaModelSelectionFactory self) -> BasisSequenceFactory"""
        return _algo.LeastSquaresMetaModelSelectionFactory_getBasisSequenceFactory(self)

    def getFittingAlgorithm(self):
        """getFittingAlgorithm(LeastSquaresMetaModelSelectionFactory self) -> FittingAlgorithm"""
        return _algo.LeastSquaresMetaModelSelectionFactory_getFittingAlgorithm(self)

    def build(self, *args):
        """build(LeastSquaresMetaModelSelectionFactory self, NumericalSample x, NumericalSample y, NumericalPoint weight, Basis psi) -> LeastSquaresMetaModelSelection"""
        return _algo.LeastSquaresMetaModelSelectionFactory_build(self, *args)

    def __repr__(self):
        """__repr__(LeastSquaresMetaModelSelectionFactory self) -> OT::String"""
        return _algo.LeastSquaresMetaModelSelectionFactory___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::LeastSquaresMetaModelSelectionFactory self, BasisSequenceFactory fact=OT::LAR(), FittingAlgorithm algo=OT::CorrectedLeaveOneOut()) -> LeastSquaresMetaModelSelectionFactory
        __init__(OT::LeastSquaresMetaModelSelectionFactory self, BasisSequenceFactory fact=OT::LAR()) -> LeastSquaresMetaModelSelectionFactory
        __init__(OT::LeastSquaresMetaModelSelectionFactory self) -> LeastSquaresMetaModelSelectionFactory
        __init__(OT::LeastSquaresMetaModelSelectionFactory self, LeastSquaresMetaModelSelectionFactory other) -> LeastSquaresMetaModelSelectionFactory
        """
        this = _algo.new_LeastSquaresMetaModelSelectionFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_LeastSquaresMetaModelSelectionFactory
    __del__ = lambda self : None;
LeastSquaresMetaModelSelectionFactory_swigregister = _algo.LeastSquaresMetaModelSelectionFactory_swigregister
LeastSquaresMetaModelSelectionFactory_swigregister(LeastSquaresMetaModelSelectionFactory)

def LeastSquaresMetaModelSelectionFactory_GetClassName():
  """LeastSquaresMetaModelSelectionFactory_GetClassName() -> OT::String"""
  return _algo.LeastSquaresMetaModelSelectionFactory_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(PenalizedLeastSquaresAlgorithm self) -> OT::String"""
        return _algo.PenalizedLeastSquaresAlgorithm_getClassName(self)

    def __repr__(self):
        """__repr__(PenalizedLeastSquaresAlgorithm self) -> OT::String"""
        return _algo.PenalizedLeastSquaresAlgorithm___repr__(self)

    def run(self):
        """run(PenalizedLeastSquaresAlgorithm self)"""
        return _algo.PenalizedLeastSquaresAlgorithm_run(self)

    def __init__(self, *args): 
        """
        __init__(OT::PenalizedLeastSquaresAlgorithm self) -> PenalizedLeastSquaresAlgorithm
        __init__(OT::PenalizedLeastSquaresAlgorithm self, NumericalSample x, NumericalSample y, NumericalMathFunctionCollection psi, OT::NumericalScalar const penalizationFactor=0.0) -> PenalizedLeastSquaresAlgorithm
        __init__(OT::PenalizedLeastSquaresAlgorithm self, NumericalSample x, NumericalSample y, NumericalMathFunctionCollection psi) -> PenalizedLeastSquaresAlgorithm
        __init__(OT::PenalizedLeastSquaresAlgorithm self, NumericalSample x, NumericalSample y, NumericalPoint weight, NumericalMathFunctionCollection psi, 
            OT::NumericalScalar const penalizationFactor=0.0) -> PenalizedLeastSquaresAlgorithm
        __init__(OT::PenalizedLeastSquaresAlgorithm self, NumericalSample x, NumericalSample y, NumericalPoint weight, NumericalMathFunctionCollection psi) -> PenalizedLeastSquaresAlgorithm
        __init__(OT::PenalizedLeastSquaresAlgorithm self, NumericalSample x, NumericalSample y, NumericalPoint weight, NumericalMathFunctionCollection psi, 
            OT::NumericalScalar const penalizationFactor, CovarianceMatrix penalizationMatrix) -> PenalizedLeastSquaresAlgorithm
        __init__(OT::PenalizedLeastSquaresAlgorithm self, PenalizedLeastSquaresAlgorithm other) -> PenalizedLeastSquaresAlgorithm
        """
        this = _algo.new_PenalizedLeastSquaresAlgorithm(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_PenalizedLeastSquaresAlgorithm
    __del__ = lambda self : None;
PenalizedLeastSquaresAlgorithm_swigregister = _algo.PenalizedLeastSquaresAlgorithm_swigregister
PenalizedLeastSquaresAlgorithm_swigregister(PenalizedLeastSquaresAlgorithm)

def PenalizedLeastSquaresAlgorithm_GetClassName():
  """PenalizedLeastSquaresAlgorithm_GetClassName() -> OT::String"""
  return _algo.PenalizedLeastSquaresAlgorithm_GetClassName()

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

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(PenalizedLeastSquaresAlgorithmFactory self) -> OT::String"""
        return _algo.PenalizedLeastSquaresAlgorithmFactory_getClassName(self)

    def build(self, *args):
        """build(PenalizedLeastSquaresAlgorithmFactory self, NumericalSample x, NumericalSample y, NumericalPoint weight, Basis psi) -> PenalizedLeastSquaresAlgorithm"""
        return _algo.PenalizedLeastSquaresAlgorithmFactory_build(self, *args)

    def __repr__(self):
        """__repr__(PenalizedLeastSquaresAlgorithmFactory self) -> OT::String"""
        return _algo.PenalizedLeastSquaresAlgorithmFactory___repr__(self)

    def __init__(self, *args): 
        """
        __init__(OT::PenalizedLeastSquaresAlgorithmFactory self) -> PenalizedLeastSquaresAlgorithmFactory
        __init__(OT::PenalizedLeastSquaresAlgorithmFactory self, PenalizedLeastSquaresAlgorithmFactory other) -> PenalizedLeastSquaresAlgorithmFactory
        """
        this = _algo.new_PenalizedLeastSquaresAlgorithmFactory(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_PenalizedLeastSquaresAlgorithmFactory
    __del__ = lambda self : None;
PenalizedLeastSquaresAlgorithmFactory_swigregister = _algo.PenalizedLeastSquaresAlgorithmFactory_swigregister
PenalizedLeastSquaresAlgorithmFactory_swigregister(PenalizedLeastSquaresAlgorithmFactory)

def PenalizedLeastSquaresAlgorithmFactory_GetClassName():
  """PenalizedLeastSquaresAlgorithmFactory_GetClassName() -> OT::String"""
  return _algo.PenalizedLeastSquaresAlgorithmFactory_GetClassName()

class KissFFT(openturns.statistics.FFTImplementation):
    """Proxy of C++ OT::KissFFT class"""
    __swig_setmethods__ = {}
    for _s in [openturns.statistics.FFTImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, KissFFT, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.statistics.FFTImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, KissFFT, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _algo.KissFFT_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(KissFFT self) -> OT::String"""
        return _algo.KissFFT_getClassName(self)

    def transform(self, *args):
        """
        transform(KissFFT self, NumericalComplexCollection collection) -> NumericalComplexCollection
        transform(KissFFT self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const size) -> NumericalComplexCollection
        """
        return _algo.KissFFT_transform(self, *args)

    def inverseTransform(self, *args):
        """
        inverseTransform(KissFFT self, NumericalComplexCollection collection) -> NumericalComplexCollection
        inverseTransform(KissFFT self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const size) -> NumericalComplexCollection
        """
        return _algo.KissFFT_inverseTransform(self, *args)

    def __repr__(self):
        """__repr__(KissFFT self) -> OT::String"""
        return _algo.KissFFT___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(KissFFT self, OT::String const & offset="") -> OT::String
        __str__(KissFFT self) -> OT::String
        """
        return _algo.KissFFT___str__(self, offset)

    def __init__(self, *args): 
        """
        __init__(OT::KissFFT self, OT::String const & name=DefaultName) -> KissFFT
        __init__(OT::KissFFT self) -> KissFFT
        __init__(OT::KissFFT self, KissFFT other) -> KissFFT
        """
        this = _algo.new_KissFFT(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_KissFFT
    __del__ = lambda self : None;
KissFFT_swigregister = _algo.KissFFT_swigregister
KissFFT_swigregister(KissFFT)

def KissFFT_GetClassName():
  """KissFFT_GetClassName() -> OT::String"""
  return _algo.KissFFT_GetClassName()

class ExpertMixture(openturns.func.NumericalMathEvaluationImplementation):
    """Proxy of C++ OT::ExpertMixture class"""
    __swig_setmethods__ = {}
    for _s in [openturns.func.NumericalMathEvaluationImplementation]: __swig_setmethods__.update(getattr(_s,'__swig_setmethods__',{}))
    __setattr__ = lambda self, name, value: _swig_setattr(self, ExpertMixture, name, value)
    __swig_getmethods__ = {}
    for _s in [openturns.func.NumericalMathEvaluationImplementation]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
    __getattr__ = lambda self, name: _swig_getattr(self, ExpertMixture, name)
    def GetClassName():
        """GetClassName() -> OT::String"""
        return _algo.ExpertMixture_GetClassName()

    if _newclass:GetClassName = staticmethod(GetClassName)
    __swig_getmethods__["GetClassName"] = lambda x: GetClassName
    def getClassName(self):
        """getClassName(ExpertMixture self) -> OT::String"""
        return _algo.ExpertMixture_getClassName(self)

    def __eq__(self, *args):
        """__eq__(ExpertMixture self, ExpertMixture other) -> OT::Bool"""
        return _algo.ExpertMixture___eq__(self, *args)

    def __repr__(self):
        """__repr__(ExpertMixture self) -> OT::String"""
        return _algo.ExpertMixture___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ExpertMixture self, OT::String const & offset="") -> OT::String
        __str__(ExpertMixture self) -> OT::String
        """
        return _algo.ExpertMixture___str__(self, offset)

    def __call__(self, *args):
        """
        __call__(ExpertMixture self, NumericalPoint inP) -> NumericalPoint
        __call__(ExpertMixture self, NumericalSample inSample) -> NumericalSample
        __call__(ExpertMixture self, TimeSeries inTimeSeries) -> TimeSeries
        __call__(ExpertMixture self, NumericalPoint inP) -> NumericalPoint
        """
        return _algo.ExpertMixture___call__(self, *args)

    def getInputDimension(self):
        """getInputDimension(ExpertMixture self) -> OT::UnsignedLong"""
        return _algo.ExpertMixture_getInputDimension(self)

    def getOutputDimension(self):
        """getOutputDimension(ExpertMixture self) -> OT::UnsignedLong"""
        return _algo.ExpertMixture_getOutputDimension(self)

    def getExperts(self):
        """getExperts(ExpertMixture self) -> Basis"""
        return _algo.ExpertMixture_getExperts(self)

    def setExperts(self, *args):
        """setExperts(ExpertMixture self, Basis experts)"""
        return _algo.ExpertMixture_setExperts(self, *args)

    def getClassifier(self):
        """getClassifier(ExpertMixture self) -> Classifier"""
        return _algo.ExpertMixture_getClassifier(self)

    def setClassifier(self, *args):
        """setClassifier(ExpertMixture self, Classifier classifier)"""
        return _algo.ExpertMixture_setClassifier(self, *args)

    def __init__(self, *args): 
        """
        __init__(OT::ExpertMixture self) -> ExpertMixture
        __init__(OT::ExpertMixture self, Basis experts, Classifier classifier) -> ExpertMixture
        __init__(OT::ExpertMixture self, ExpertMixture other) -> ExpertMixture
        """
        this = _algo.new_ExpertMixture(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_ExpertMixture
    __del__ = lambda self : None;
ExpertMixture_swigregister = _algo.ExpertMixture_swigregister
ExpertMixture_swigregister(ExpertMixture)

def ExpertMixture_GetClassName():
  """ExpertMixture_GetClassName() -> OT::String"""
  return _algo.ExpertMixture_GetClassName()

class ApproximationAlgorithmImplementationPointer(_object):
    """Proxy of C++ OT::Pointer<(OT::ApproximationAlgorithmImplementation)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, ApproximationAlgorithmImplementationPointer, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, ApproximationAlgorithmImplementationPointer, name)
    __swig_setmethods__["ptr_"] = _algo.ApproximationAlgorithmImplementationPointer_ptr__set
    __swig_getmethods__["ptr_"] = _algo.ApproximationAlgorithmImplementationPointer_ptr__get
    if _newclass:ptr_ = _swig_property(_algo.ApproximationAlgorithmImplementationPointer_ptr__get, _algo.ApproximationAlgorithmImplementationPointer_ptr__set)
    def __init__(self, *args): 
        """
        __init__(OT::Pointer<(OT::ApproximationAlgorithmImplementation)> self) -> ApproximationAlgorithmImplementationPointer
        __init__(OT::Pointer<(OT::ApproximationAlgorithmImplementation)> self, ApproximationAlgorithmImplementation ptr) -> ApproximationAlgorithmImplementationPointer
        """
        this = _algo.new_ApproximationAlgorithmImplementationPointer(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_ApproximationAlgorithmImplementationPointer
    __del__ = lambda self : None;
    def reset(self):
        """reset(ApproximationAlgorithmImplementationPointer self)"""
        return _algo.ApproximationAlgorithmImplementationPointer_reset(self)

    def __ref__(self, *args):
        """
        __ref__(ApproximationAlgorithmImplementationPointer self) -> ApproximationAlgorithmImplementation
        __ref__(ApproximationAlgorithmImplementationPointer self) -> ApproximationAlgorithmImplementation
        """
        return _algo.ApproximationAlgorithmImplementationPointer___ref__(self, *args)

    def __deref__(self):
        """__deref__(ApproximationAlgorithmImplementationPointer self) -> ApproximationAlgorithmImplementation"""
        return _algo.ApproximationAlgorithmImplementationPointer___deref__(self)

    def isNull(self):
        """isNull(ApproximationAlgorithmImplementationPointer self) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationPointer_isNull(self)

    def __nonzero__(self):
        return _algo.ApproximationAlgorithmImplementationPointer___nonzero__(self)
    __bool__ = __nonzero__


    def get(self):
        """get(ApproximationAlgorithmImplementationPointer self) -> ApproximationAlgorithmImplementation"""
        return _algo.ApproximationAlgorithmImplementationPointer_get(self)

    def getImplementation(self):
        """getImplementation(ApproximationAlgorithmImplementationPointer self) -> OT::Pointer< OT::ApproximationAlgorithmImplementation >::pointer_type const &"""
        return _algo.ApproximationAlgorithmImplementationPointer_getImplementation(self)

    def unique(self):
        """unique(ApproximationAlgorithmImplementationPointer self) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationPointer_unique(self)

    def use_count(self):
        """use_count(ApproximationAlgorithmImplementationPointer self) -> OT::UnsignedLong"""
        return _algo.ApproximationAlgorithmImplementationPointer_use_count(self)

    def swap(self, *args):
        """swap(ApproximationAlgorithmImplementationPointer self, ApproximationAlgorithmImplementationPointer other)"""
        return _algo.ApproximationAlgorithmImplementationPointer_swap(self, *args)

    def GetClassName(self):
        """GetClassName(ApproximationAlgorithmImplementationPointer self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementationPointer_GetClassName(self)

    def getClassName(self):
        """getClassName(ApproximationAlgorithmImplementationPointer self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementationPointer_getClassName(self)

    def getX(self):
        """getX(ApproximationAlgorithmImplementationPointer self) -> NumericalSample"""
        return _algo.ApproximationAlgorithmImplementationPointer_getX(self)

    def getY(self):
        """getY(ApproximationAlgorithmImplementationPointer self) -> NumericalSample"""
        return _algo.ApproximationAlgorithmImplementationPointer_getY(self)

    def getWeight(self):
        """getWeight(ApproximationAlgorithmImplementationPointer self) -> NumericalPoint"""
        return _algo.ApproximationAlgorithmImplementationPointer_getWeight(self)

    def getPsi(self):
        """getPsi(ApproximationAlgorithmImplementationPointer self) -> Basis"""
        return _algo.ApproximationAlgorithmImplementationPointer_getPsi(self)

    def __repr__(self):
        """__repr__(ApproximationAlgorithmImplementationPointer self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementationPointer___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(ApproximationAlgorithmImplementationPointer self, OT::String const & offset="") -> OT::String
        __str__(ApproximationAlgorithmImplementationPointer self) -> OT::String
        """
        return _algo.ApproximationAlgorithmImplementationPointer___str__(self, offset)

    def run(self):
        """run(ApproximationAlgorithmImplementationPointer self)"""
        return _algo.ApproximationAlgorithmImplementationPointer_run(self)

    def getCoefficients(self):
        """getCoefficients(ApproximationAlgorithmImplementationPointer self) -> NumericalPoint"""
        return _algo.ApproximationAlgorithmImplementationPointer_getCoefficients(self)

    def getResidual(self):
        """getResidual(ApproximationAlgorithmImplementationPointer self) -> OT::NumericalScalar"""
        return _algo.ApproximationAlgorithmImplementationPointer_getResidual(self)

    def getRelativeError(self):
        """getRelativeError(ApproximationAlgorithmImplementationPointer self) -> OT::NumericalScalar"""
        return _algo.ApproximationAlgorithmImplementationPointer_getRelativeError(self)

    def setVerbose(self, *args):
        """setVerbose(ApproximationAlgorithmImplementationPointer self, OT::Bool const verbose)"""
        return _algo.ApproximationAlgorithmImplementationPointer_setVerbose(self, *args)

    def getVerbose(self):
        """getVerbose(ApproximationAlgorithmImplementationPointer self) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationPointer_getVerbose(self)

    def __eq__(self, *args):
        """__eq__(ApproximationAlgorithmImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationPointer___eq__(self, *args)

    def Is(self, *args):
        """Is(ApproximationAlgorithmImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationPointer_Is(self, *args)

    def getId(self):
        """getId(ApproximationAlgorithmImplementationPointer self) -> OT::Id"""
        return _algo.ApproximationAlgorithmImplementationPointer_getId(self)

    def setShadowedId(self, *args):
        """setShadowedId(ApproximationAlgorithmImplementationPointer self, OT::Id id)"""
        return _algo.ApproximationAlgorithmImplementationPointer_setShadowedId(self, *args)

    def getShadowedId(self):
        """getShadowedId(ApproximationAlgorithmImplementationPointer self) -> OT::Id"""
        return _algo.ApproximationAlgorithmImplementationPointer_getShadowedId(self)

    def setVisibility(self, *args):
        """setVisibility(ApproximationAlgorithmImplementationPointer self, OT::Bool visible)"""
        return _algo.ApproximationAlgorithmImplementationPointer_setVisibility(self, *args)

    def getVisibility(self):
        """getVisibility(ApproximationAlgorithmImplementationPointer self) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationPointer_getVisibility(self)

    def hasName(self):
        """hasName(ApproximationAlgorithmImplementationPointer self) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationPointer_hasName(self)

    def hasVisibleName(self):
        """hasVisibleName(ApproximationAlgorithmImplementationPointer self) -> OT::Bool"""
        return _algo.ApproximationAlgorithmImplementationPointer_hasVisibleName(self)

    def getName(self):
        """getName(ApproximationAlgorithmImplementationPointer self) -> OT::String"""
        return _algo.ApproximationAlgorithmImplementationPointer_getName(self)

    def setName(self, *args):
        """setName(ApproximationAlgorithmImplementationPointer self, OT::String const & name)"""
        return _algo.ApproximationAlgorithmImplementationPointer_setName(self, *args)

ApproximationAlgorithmImplementationPointer_swigregister = _algo.ApproximationAlgorithmImplementationPointer_swigregister
ApproximationAlgorithmImplementationPointer_swigregister(ApproximationAlgorithmImplementationPointer)

class FFTImplementationPointer(_object):
    """Proxy of C++ OT::Pointer<(OT::FFTImplementation)> class"""
    __swig_setmethods__ = {}
    __setattr__ = lambda self, name, value: _swig_setattr(self, FFTImplementationPointer, name, value)
    __swig_getmethods__ = {}
    __getattr__ = lambda self, name: _swig_getattr(self, FFTImplementationPointer, name)
    __swig_setmethods__["ptr_"] = _algo.FFTImplementationPointer_ptr__set
    __swig_getmethods__["ptr_"] = _algo.FFTImplementationPointer_ptr__get
    if _newclass:ptr_ = _swig_property(_algo.FFTImplementationPointer_ptr__get, _algo.FFTImplementationPointer_ptr__set)
    def __init__(self, *args): 
        """
        __init__(OT::Pointer<(OT::FFTImplementation)> self) -> FFTImplementationPointer
        __init__(OT::Pointer<(OT::FFTImplementation)> self, FFTImplementation ptr) -> FFTImplementationPointer
        """
        this = _algo.new_FFTImplementationPointer(*args)
        try: self.this.append(this)
        except: self.this = this
    __swig_destroy__ = _algo.delete_FFTImplementationPointer
    __del__ = lambda self : None;
    def reset(self):
        """reset(FFTImplementationPointer self)"""
        return _algo.FFTImplementationPointer_reset(self)

    def __ref__(self, *args):
        """
        __ref__(FFTImplementationPointer self) -> FFTImplementation
        __ref__(FFTImplementationPointer self) -> FFTImplementation
        """
        return _algo.FFTImplementationPointer___ref__(self, *args)

    def __deref__(self):
        """__deref__(FFTImplementationPointer self) -> FFTImplementation"""
        return _algo.FFTImplementationPointer___deref__(self)

    def isNull(self):
        """isNull(FFTImplementationPointer self) -> OT::Bool"""
        return _algo.FFTImplementationPointer_isNull(self)

    def __nonzero__(self):
        return _algo.FFTImplementationPointer___nonzero__(self)
    __bool__ = __nonzero__


    def get(self):
        """get(FFTImplementationPointer self) -> FFTImplementation"""
        return _algo.FFTImplementationPointer_get(self)

    def getImplementation(self):
        """getImplementation(FFTImplementationPointer self) -> OT::Pointer< OT::FFTImplementation >::pointer_type const &"""
        return _algo.FFTImplementationPointer_getImplementation(self)

    def unique(self):
        """unique(FFTImplementationPointer self) -> OT::Bool"""
        return _algo.FFTImplementationPointer_unique(self)

    def use_count(self):
        """use_count(FFTImplementationPointer self) -> OT::UnsignedLong"""
        return _algo.FFTImplementationPointer_use_count(self)

    def swap(self, *args):
        """swap(FFTImplementationPointer self, FFTImplementationPointer other)"""
        return _algo.FFTImplementationPointer_swap(self, *args)

    def GetClassName(self):
        """GetClassName(FFTImplementationPointer self) -> OT::String"""
        return _algo.FFTImplementationPointer_GetClassName(self)

    def getClassName(self):
        """getClassName(FFTImplementationPointer self) -> OT::String"""
        return _algo.FFTImplementationPointer_getClassName(self)

    def transform(self, *args):
        """
        transform(FFTImplementationPointer self, NumericalScalarCollection collection) -> NumericalComplexCollection
        transform(FFTImplementationPointer self, NumericalComplexCollection collection) -> NumericalComplexCollection
        transform(FFTImplementationPointer self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const size) -> NumericalComplexCollection
        transform(FFTImplementationPointer self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const step, 
            OT::UnsignedLong const last) -> NumericalComplexCollection
        """
        return _algo.FFTImplementationPointer_transform(self, *args)

    def inverseTransform(self, *args):
        """
        inverseTransform(FFTImplementationPointer self, NumericalComplexCollection collection) -> NumericalComplexCollection
        inverseTransform(FFTImplementationPointer self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const size) -> NumericalComplexCollection
        inverseTransform(FFTImplementationPointer self, NumericalComplexCollection collection, OT::UnsignedLong const first, OT::UnsignedLong const step, 
            OT::UnsignedLong const last) -> NumericalComplexCollection
        """
        return _algo.FFTImplementationPointer_inverseTransform(self, *args)

    def __repr__(self):
        """__repr__(FFTImplementationPointer self) -> OT::String"""
        return _algo.FFTImplementationPointer___repr__(self)

    def __str__(self, offset=""):
        """
        __str__(FFTImplementationPointer self, OT::String const & offset="") -> OT::String
        __str__(FFTImplementationPointer self) -> OT::String
        """
        return _algo.FFTImplementationPointer___str__(self, offset)

    def __eq__(self, *args):
        """__eq__(FFTImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _algo.FFTImplementationPointer___eq__(self, *args)

    def Is(self, *args):
        """Is(FFTImplementationPointer self, PersistentObject other) -> OT::Bool"""
        return _algo.FFTImplementationPointer_Is(self, *args)

    def getId(self):
        """getId(FFTImplementationPointer self) -> OT::Id"""
        return _algo.FFTImplementationPointer_getId(self)

    def setShadowedId(self, *args):
        """setShadowedId(FFTImplementationPointer self, OT::Id id)"""
        return _algo.FFTImplementationPointer_setShadowedId(self, *args)

    def getShadowedId(self):
        """getShadowedId(FFTImplementationPointer self) -> OT::Id"""
        return _algo.FFTImplementationPointer_getShadowedId(self)

    def setVisibility(self, *args):
        """setVisibility(FFTImplementationPointer self, OT::Bool visible)"""
        return _algo.FFTImplementationPointer_setVisibility(self, *args)

    def getVisibility(self):
        """getVisibility(FFTImplementationPointer self) -> OT::Bool"""
        return _algo.FFTImplementationPointer_getVisibility(self)

    def hasName(self):
        """hasName(FFTImplementationPointer self) -> OT::Bool"""
        return _algo.FFTImplementationPointer_hasName(self)

    def hasVisibleName(self):
        """hasVisibleName(FFTImplementationPointer self) -> OT::Bool"""
        return _algo.FFTImplementationPointer_hasVisibleName(self)

    def getName(self):
        """getName(FFTImplementationPointer self) -> OT::String"""
        return _algo.FFTImplementationPointer_getName(self)

    def setName(self, *args):
        """setName(FFTImplementationPointer self, OT::String const & name)"""
        return _algo.FFTImplementationPointer_setName(self, *args)

FFTImplementationPointer_swigregister = _algo.FFTImplementationPointer_swigregister
FFTImplementationPointer_swigregister(FFTImplementationPointer)

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