Skip to content

Commit

Permalink
Merge pull request #39 from jschueller/inverse
Browse files Browse the repository at this point in the history
Inverse
  • Loading branch information
jschueller authored Jun 20, 2023
2 parents cdeeef3 + 91a5afd commit e4c41bd
Show file tree
Hide file tree
Showing 40 changed files with 2,819 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ endmacro ( ot_add_current_dir_to_include_dirs )

set ( CPACK_PACKAGE_NAME ${PACKAGE_NAME} )
set ( CPACK_PACKAGE_VERSION_MAJOR 0 )
set ( CPACK_PACKAGE_VERSION_MINOR 12 )
set ( CPACK_PACKAGE_VERSION_MINOR 13 )
set ( CPACK_PACKAGE_VERSION_PATCH )
set ( CPACK_SOURCE_GENERATOR "TGZ;TBZ2" )
set (CPACK_BINARY_STGZ OFF CACHE BOOL "STGZ")
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
= 0.13 release (in progress)

* Add SubsetInverseSampling
* Add InverseFORM

= 0.12 release (2023-05-17)

* Maintenance
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12
0.13
2 changes: 1 addition & 1 deletion distro/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
otrobopt (0.12-0.1) unstable; urgency=low
otrobopt (0.13-0.1) unstable; urgency=low

* Non-maintainer upload.
* Initial release.
Expand Down
2 changes: 1 addition & 1 deletion distro/rpm/otrobopt.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \
-DBUILD_SHARED_LIBS:BOOL=ON

Name: otrobopt
Version: 0.12
Version: 0.13
Release: 0%{?dist}
Summary: OpenTURNS module
Group: System Environment/Libraries
Expand Down
2 changes: 2 additions & 0 deletions lib/include/otrobopt/OTRobOpt.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,7 @@
#include "otrobopt/QuantileMeasure.hxx"
#include "otrobopt/AggregatedMeasure.hxx"
#include "otrobopt/MeasureFactory.hxx"
#include "otrobopt/SubsetInverseSampling.hxx"
#include "otrobopt/InverseFORM.hxx"

#endif /* OTROBOPT_OTROBOPT_HXX */
9 changes: 8 additions & 1 deletion lib/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ ot_add_source_file (MeasureFactory.cxx)
ot_add_source_file (RobustOptimizationProblem.cxx)
ot_add_source_file (RobustOptimizationAlgorithm.cxx)
ot_add_source_file (SequentialMonteCarloRobustAlgorithm.cxx)
ot_add_source_file (SubsetInverseSamplingResult.cxx)
ot_add_source_file (SubsetInverseSampling.cxx)
ot_add_source_file (InverseFORMResult.cxx)
ot_add_source_file (InverseFORM.cxx)

ot_install_header_file (MeasureEvaluation.hxx)
ot_install_header_file (MeasureEvaluationImplementation.hxx)
Expand All @@ -33,7 +37,10 @@ ot_install_header_file (MeasureFactory.hxx)
ot_install_header_file (RobustOptimizationProblem.hxx)
ot_install_header_file (RobustOptimizationAlgorithm.hxx)
ot_install_header_file (SequentialMonteCarloRobustAlgorithm.hxx)

ot_install_header_file (SubsetInverseSamplingResult.hxx)
ot_install_header_file (SubsetInverseSampling.hxx)
ot_install_header_file (InverseFORMResult.hxx)
ot_install_header_file (InverseFORM.hxx)

include_directories ( ${INTERNAL_INCLUDE_DIRS} )

Expand Down
Loading

0 comments on commit e4c41bd

Please sign in to comment.