Changeset 1015
- Timestamp:
- 11/17/08 17:38:29 (2 months ago)
- Files:
-
- branches/chaos/doc/src/ReferenceGuide/Makefile.am (modified) (1 diff)
- branches/chaos/doc/src/ReferenceGuide/reference_guide_content.tex (modified) (1 diff)
- branches/chaos/lib/include/OTconfig.h.in (modified) (1 diff)
- branches/chaos/lib/test/t_StandardSpaceImportanceSampling_std.cxx (modified) (1 diff)
- branches/chaos/python/test/Makefile.am (modified) (1 diff)
- branches/chaos/python/test/t_OrthogonalBasis_std.py (added)
- branches/chaos/python/test/t_OrthogonalProductPolynomialFactory_std.py (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/chaos/doc/src/ReferenceGuide/Makefile.am
r862 r1015 69 69 docref_SurfRep_LeastSquare.tex \ 70 70 docref_SurfRep_Polynome.tex \ 71 docref_SurfRep_FunctionalChaos.tex \ 72 docref_SurfRep_PolynomialChaos.tex \ 71 73 docref_SurfRep_Taylor.tex \ 72 74 global_methodology_content.tex \ branches/chaos/doc/src/ReferenceGuide/reference_guide_content.tex
r1002 r1015 344 344 \newpage 345 345 \input{docref_SurfRep_LeastSquare} 346 \newpage 347 \input{docref_SurfRep_FunctionalChaos} 348 \newpage 349 \input{docref_SurfRep_PolynomialChaos} 350 branches/chaos/lib/include/OTconfig.h.in
r1002 r1015 133 133 #undef HAVE__BOOL 134 134 135 /* Define to the sub-directory in which libtool stores uninstalled libraries. 136 */ 137 #undef LT_OBJDIR 138 135 139 /* Define to the name that anonymous objects should have. */ 136 140 #undef OBJECT_DEFAULT_NAME branches/chaos/lib/test/t_StandardSpaceImportanceSampling_std.cxx
r932 r1015 83 83 /* The second parameter is an event */ 84 84 /* The third parameter is a starting point for the design point research */ 85 FORM myAlgo(Cobyla(), myEvent, mean); 85 Cobyla myCobyla; 86 FORM myAlgo(myCobyla, myEvent, mean); 86 87 87 88 /* Perform the simulation */ branches/chaos/python/test/Makefile.am
r1002 r1015 443 443 PYTHONINSTALLCHECK_PROGS += t_LaguerreFactory_std.py 444 444 PYTHONINSTALLCHECK_PROGS += t_LegendreFactory_std.py 445 PYTHONINSTALLCHECK_PROGS += t_OrthogonalBasis_std.py 446 PYTHONINSTALLCHECK_PROGS += t_OrthogonalProductPolynomialFactory_std.py 447 445 448 446 449 ## QuadraticCumul
