Changeset 999
- Timestamp:
- 11/01/08 21:20:49 (2 months ago)
- Files:
-
- branches/lebrun/devel/doc/src/ExamplesGuide/Makefile.am (modified) (1 diff)
- branches/lebrun/devel/doc/src/Makefile.am (modified) (1 diff)
- branches/lebrun/devel/gui/configure.ac (modified) (3 diffs)
- branches/lebrun/devel/lib/configure.ac (modified) (1 diff)
- branches/lebrun/devel/lib/include/OTconfig.h.in (modified) (1 diff)
- branches/lebrun/devel/lib/m4/ot_check_r_packages.m4 (modified) (1 diff)
- branches/lebrun/devel/lib/src/Base/Stat/Makefile.am (modified) (2 diffs)
- branches/lebrun/devel/lib/src/Base/Stat/SensitivityAnalysis.cxx (copied) (copied from trunk/lib/src/Base/Stat/SensitivityAnalysis.cxx)
- branches/lebrun/devel/lib/src/Base/Stat/SensitivityAnalysis.hxx (copied) (copied from trunk/lib/src/Base/Stat/SensitivityAnalysis.hxx)
- branches/lebrun/devel/lib/src/Base/Type/Makefile.am (modified) (1 diff)
- branches/lebrun/devel/lib/src/Base/Type/NumericalPoint.hxx (modified) (1 diff)
- branches/lebrun/devel/lib/src/Base/Type/NumericalPointImplementation.hxx (modified) (1 diff)
- branches/lebrun/devel/lib/src/Base/Type/PersistentCollection.hxx (modified) (1 diff)
- branches/lebrun/devel/lib/test/Makefile.am (modified) (4 diffs)
- branches/lebrun/devel/lib/test/atlocal.in (modified) (1 diff)
- branches/lebrun/devel/lib/test/check_testsuite.at (modified) (1 diff)
- branches/lebrun/devel/lib/test/t_SensitivityAnalysis_std.at (copied) (copied from trunk/lib/test/t_SensitivityAnalysis_std.at)
- branches/lebrun/devel/lib/test/t_SensitivityAnalysis_std.cxx (copied) (copied from trunk/lib/test/t_SensitivityAnalysis_std.cxx)
- branches/lebrun/devel/python/configure.ac (modified) (1 diff)
- branches/lebrun/devel/python/m4/ot_check_r.m4 (copied) (copied from trunk/python/m4/ot_check_r.m4)
- branches/lebrun/devel/python/m4/ot_check_r_bitmap.m4 (copied) (copied from trunk/python/m4/ot_check_r_bitmap.m4)
- branches/lebrun/devel/python/m4/ot_check_r_package.m4 (copied) (copied from trunk/python/m4/ot_check_r_package.m4)
- branches/lebrun/devel/python/m4/ot_check_r_packages.m4 (copied) (copied from trunk/python/m4/ot_check_r_packages.m4)
- branches/lebrun/devel/python/src/Makefile.am (modified) (1 diff)
- branches/lebrun/devel/python/src/SensitivityAnalysis.i (copied) (copied from trunk/python/src/SensitivityAnalysis.i)
- branches/lebrun/devel/python/src/ot.i (modified) (1 diff)
- branches/lebrun/devel/python/test/Makefile.am (modified) (2 diffs)
- branches/lebrun/devel/python/test/atlocal.in (modified) (1 diff)
- branches/lebrun/devel/python/test/python_installcheck_testsuite.at (modified) (1 diff)
- branches/lebrun/devel/python/test/t_SensitivityAnalysis_std.atpy (copied) (copied from trunk/python/test/t_SensitivityAnalysis_std.atpy)
- branches/lebrun/devel/python/test/t_SensitivityAnalysis_std.py (copied) (copied from trunk/python/test/t_SensitivityAnalysis_std.py)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/lebrun/devel/doc/src/ExamplesGuide/Makefile.am
r994 r999 27 27 EXTRA_DIST = \ 28 28 OpenTURNS_ExamplesGuide.tex \ 29 resultatExampleBeam.tex \ 29 30 poutre.pdf \ 30 31 convergenceGrapheDS.pdf\ branches/lebrun/devel/doc/src/Makefile.am
r994 r999 25 25 include $(top_srcdir)/config/common.am 26 26 27 SUBDIRS = ArchitectureGuide DocumentationGuide ReferenceGuide UseCasesGuide UserManual ExamplesGuide WrapperGuide GNU_free_documentation_licence ContributionGuide ExamplesGuide #CodingRulesGuide 28 DIST_SUBDIRS = ArchitectureGuide DocumentationGuide ReferenceGuide UseCasesGuide UserManual ExamplesGuide WrapperGuide GNU_free_documentation_licence ContributionGuide ExamplesGuide #CodingRulesGuide 27 DIRS = ArchitectureGuide 28 DIRS += DocumentationGuide 29 DIRS += ReferenceGuide 30 DIRS += UseCasesGuide 31 DIRS += UserManual 32 DIRS += ExamplesGuide 33 DIRS += WrapperGuide 34 DIRS += GNU_free_documentation_licence 35 DIRS += ContributionGuide 36 #DIRS += CodingRulesGuide 37 38 SUBDIRS = $(DIRS) 39 DIST_SUBDIRS = $(DIRS) 29 40 30 41 EXTRA_DIST = logoOpenTURNS.jpg branches/lebrun/devel/gui/configure.ac
r994 r999 100 100 OT_CHECK_DOT 101 101 102 # Check for BOOST 103 OT_CHECK_BOOST 104 102 105 # Get object default name 103 106 OT_GET_OBJECT_DEFAULT_NAME … … 134 137 test "x$WITH_DOXYGEN" = x1 && sum_doxygen=OK || sum_doxygen="no * (optional)" 135 138 test "x$WITH_DOT" = x1 && sum_dot=OK || sum_dot="no * (optional)" 139 test "x$WITH_BOOST" = x1 && sum_boost=OK || sum_dot="no * (MANDATORY)" 136 140 test "x$have_qt" = xyes && sum_qt=OK || sum_qt="no * (MANDATORY)" 137 141 … … 151 155 Doxygen ${sum_doxygen} 152 156 dot ${sum_dot} 157 BOOST ${sum_boost} 153 158 Qt ${sum_qt} 154 159 EOT branches/lebrun/devel/lib/configure.ac
r994 r999 114 114 # Detect R configuration (default install path redefined to /usr/lib/R) 115 115 OT_CHECK_R([/usr/lib/R]) 116 OT_CHECK_R_PACKAGES([base rotRPackage ])116 OT_CHECK_R_PACKAGES([base rotRPackage sensitivity]) 117 117 #OT_CHECK_R_BITMAP 118 118 branches/lebrun/devel/lib/include/OTconfig.h.in
r991 r999 90 90 /* Define to 1 if R has package rotRPackage. */ 91 91 #undef HAVE_R_PACKAGE_ROTRPACKAGE 92 93 /* Define to 1 if R has package sensitivity. */ 94 #undef HAVE_R_PACKAGE_SENSITIVITY 92 95 93 96 /* Define to 1 if you have the <semaphore.h> header file. */ branches/lebrun/devel/lib/m4/ot_check_r_packages.m4
r424 r999 46 46 47 47 res=0 48 eval "test \"\${ot_cv_check_r_package_${r_package_name}}\" = yes" && res=148 eval "test \"\${ot_cv_check_r_package_${r_package_name}}\" = yes" && { res=1 ; R_PACKAGES="$R_PACKAGES ${r_package_name}"; } 49 49 50 AC_SUBST(R_PACKAGES) 50 51 AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_R_PACKAGE_$r_package_name), [$res]) 51 52 done branches/lebrun/devel/lib/src/Base/Stat/Makefile.am
r991 r999 50 50 LinearModel.hxx \ 51 51 CorrelationAnalysis.hxx \ 52 SensitivityAnalysis.hxx \ 52 53 RandomGenerator.hxx \ 53 54 dsfmt.h \ … … 76 77 LinearModel.cxx \ 77 78 CorrelationAnalysis.cxx \ 79 SensitivityAnalysis.cxx \ 78 80 RandomGenerator.cxx \ 79 81 dsfmt.cxx branches/lebrun/devel/lib/src/Base/Type/Makefile.am
r991 r999 53 53 noinst_LTLIBRARIES = libOTType.la 54 54 libOTType_la_LDFLAGS = -no-undefined 55 libOTType_la_CXXFLAGS = $(QT_CXXFLAGS) 55 56 libOTType_la_SOURCES = \ 56 57 Description.cxx \ branches/lebrun/devel/lib/src/Base/Type/NumericalPoint.hxx
r975 r999 128 128 const NumericalPoint & rhs); 129 129 130 /** Ordering operator */130 /** Ordering operator */ 131 131 Bool operator <(const NumericalPoint & lhs, 132 132 const NumericalPoint & rhs); 133 133 134 /** Product operator */ 135 //NumericalPoint operator *(const NumericalPoint & point, NumericalScalar scalar); 134 /** Product operator */ 136 135 NumericalPoint operator *(const NumericalScalar scalar, 137 136 const NumericalPoint & point); branches/lebrun/devel/lib/src/Base/Type/NumericalPointImplementation.hxx
r975 r999 151 151 152 152 /** Product operator */ 153 //NumericalPointImplementation operator *(const NumericalPointImplementation & point, NumericalScalar scalar);154 153 NumericalPointImplementation operator *(const NumericalScalar scalar, 155 154 const NumericalPointImplementation & point); branches/lebrun/devel/lib/src/Base/Type/PersistentCollection.hxx
r975 r999 211 211 212 212 213 /** Or ederintoperator */213 /** Ordering operator */ 214 214 template <class T> inline 215 215 Bool operator < (const PersistentCollection<T> & lhs, branches/lebrun/devel/lib/test/Makefile.am
r991 r999 125 125 CHECK_TESTS += $(srcdir)/t_LinearModelFactory_std.at 126 126 CHECK_TESTS += $(srcdir)/t_LinearModel_std.at 127 CHECK_TESTS += $(srcdir)/t_SensitivityAnalysis_std.at 127 128 CHECK_TESTS += $(srcdir)/t_NumericalSample_big.at 128 129 CHECK_TESTS += $(srcdir)/t_NumericalSample_split.at … … 269 270 CHECK_PROGS += t_NumericalMathFunction_analytical 270 271 271 ## S tat272 ## Solver 272 273 CHECK_PROGS += t_Bisection_std 273 274 CHECK_PROGS += t_Brent_std … … 280 281 CHECK_PROGS += t_LinearModelFactory_std 281 282 CHECK_PROGS += t_LinearModel_std 283 CHECK_PROGS += t_SensitivityAnalysis_std 282 284 CHECK_PROGS += t_NumericalSample_big 283 285 CHECK_PROGS += t_NumericalSample_split … … 856 858 t_LinearModelFactory_std_SOURCES = t_LinearModelFactory_std.cxx 857 859 t_LinearModel_std_SOURCES = t_LinearModel_std.cxx 860 t_SensitivityAnalysis_std_SOURCES = t_SensitivityAnalysis_std.cxx 858 861 t_NumericalSample_big_SOURCES = t_NumericalSample_big.cxx 859 862 t_NumericalSample_computation_SOURCES = t_NumericalSample_computation.cxx branches/lebrun/devel/lib/test/atlocal.in
r506 r999 18 18 # 19 19 20 with_xercesc=@WITH_XERCESC@21 20 with_bc=@WITH_BC@ 21 for pkg in @R_PACKAGES@ "" 22 do 23 test -n $pkg && eval "have_r_package_$pkg=1" 24 done branches/lebrun/devel/lib/test/check_testsuite.at
r975 r999 84 84 m4_include(t_LinearModelFactory_std.at) 85 85 m4_include(t_LinearModel_std.at) 86 m4_include(t_SensitivityAnalysis_std.at) 86 87 m4_include(t_RandomGenerator_std.at) 87 88 branches/lebrun/devel/python/configure.ac
r994 r999 85 85 # Check for Open TURNS library 86 86 OT_CHECK_OPENTURNS 87 88 # Detect R configuration (default install path redefined to /usr/lib/R) 89 OT_CHECK_R([/usr/lib/R]) 90 OT_CHECK_R_PACKAGES([base rotRPackage sensitivity]) 91 #OT_CHECK_R_BITMAP 87 92 88 93 # Check for Python branches/lebrun/devel/python/src/Makefile.am
r994 r999 121 121 RandomGenerator.i \ 122 122 CorrelationAnalysis.i \ 123 SensitivityAnalysis.i \ 123 124 WrapperData.i \ 124 125 WrapperFile.i \ branches/lebrun/devel/python/src/ot.i
r994 r999 108 108 %include RandomGenerator.i 109 109 %include CorrelationAnalysis.i 110 %include SensitivityAnalysis.i 110 111 111 112 /* Base/Func */ branches/lebrun/devel/python/test/Makefile.am
r976 r999 92 92 PYTHONINSTALLCHECK_TESTS += $(srcdir)/t_LinearModel_std.atpy 93 93 PYTHONINSTALLCHECK_TESTS += $(srcdir)/t_LinearModelFactory_std.atpy 94 PYTHONINSTALLCHECK_TESTS += $(srcdir)/t_SensitivityAnalysis_std.atpy 94 95 PYTHONINSTALLCHECK_TESTS += $(srcdir)/t_RandomGenerator_std.atpy 95 96 PYTHONINSTALLCHECK_TESTS += $(srcdir)/t_TestResult_std.atpy … … 305 306 PYTHONINSTALLCHECK_PROGS += t_LinearModel_std.py 306 307 PYTHONINSTALLCHECK_PROGS += t_LinearModelFactory_std.py 308 PYTHONINSTALLCHECK_PROGS += t_SensitivityAnalysis_std.py 307 309 PYTHONINSTALLCHECK_PROGS += t_RandomGenerator_std.py 308 310 PYTHONINSTALLCHECK_PROGS += t_TestResult_std.py branches/lebrun/devel/python/test/atlocal.in
r548 r999 19 19 20 20 with_bc=@WITH_BC@ 21 for pkg in @R_PACKAGES@ "" 22 do 23 test -n $pkg && eval "have_r_package_$pkg=1" 24 done 25 branches/lebrun/devel/python/test/python_installcheck_testsuite.at
r976 r999 80 80 m4_include(t_ConfidenceInterval_std.atpy) 81 81 m4_include(t_NumericalSample_csv.atpy) 82 m4_include(t_SensitivityAnalysis_std.atpy) 82 83 83 84 ## Graph
