Skip to content

Commit

Permalink
Revert changes introducing multi channel generator
Browse files Browse the repository at this point in the history
- reverted commits e158755, a77a16a, and 173624d
  • Loading branch information
cschwan committed Apr 24, 2015
1 parent e9db4cf commit 2be5b2c
Show file tree
Hide file tree
Showing 12 changed files with 4 additions and 383 deletions.
12 changes: 1 addition & 11 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
New in 0.3.1.9999:
==================



New in 0.3.1:
=============

- fixed compilation error
- added new multi channel integrator

New in 0.3:
===========

- fixed compilation error
- removal of the ``hep::mpi_single_generator`` function. This is now on by
default - the integration results are independent of the number of processes
- temporary fix for single-precision floating point numbers that are ``1.0f``
Expand Down
9 changes: 2 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,8 @@ Project Description
===================

``hep-mc`` is a C++11 template library providing Monte Carlo integration
routines, currently

- a PLAIN integrator,
- VEGAS, which uses adaptive importance sampling, and
- a multi channel integrator.

In addition, this library comes with MPI-parallelized routines.
algorithms, currently only PLAIN and VEGAS. In addition, this library comes with
MPI-parallelized routines.

The aim of this project is to provide functions and classes that are:

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
AC_PREREQ([2.58])

# initialize configure
AC_INIT([hep-mc], [0.3.1.9999], [https://github.com/cschwan/hep-mc/issues],
AC_INIT([hep-mc], [0.3], [https://github.com/cschwan/hep-mc/issues],
[hep-mc], [https://github.com/cschwan/hep-mc])

# put autotools files into a separate directory
Expand Down
1 change: 0 additions & 1 deletion doc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ EXTRA_DIST = \
global_configuration.dox \
integrands.dox \
mainpage.dox \
multi_channel.dox \
plain.dox \
references.bib \
results.dox \
Expand Down
1 change: 0 additions & 1 deletion doc/examples.dox
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/**

\example helper_example.cpp
\example multi_channel_example.cpp
\example mpi_vegas_example.cpp
\example read_linear_grid.cpp
\example vegas_example.cpp
Expand Down
2 changes: 0 additions & 2 deletions examples/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ AM_DEFAULT_SOURCE_EXT = .cpp

noinst_PROGRAMS = \
helper_example \
multi_channel_example \
read_linear_grid \
vegas_example \
vegas_grid \
vegas_stop_after_precision

# redundant for automake >= 1.11
helper_example_SOURCES = helper_example.cpp
multi_channel_example_SOURCES = multi_channel_example.cpp
read_linear_grid_SOURCES = read_linear_grid.cpp
vegas_example_SOURCES = vegas_example.cpp
vegas_grid_SOURCES = vegas_grid.cpp
Expand Down
49 changes: 0 additions & 49 deletions examples/multi_channel_example.cpp

This file was deleted.

3 changes: 0 additions & 3 deletions include/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ nobase_include_HEADERS = \
hep/mc/mc_helper.hpp \
hep/mc/mc_point.hpp \
hep/mc/mc_result.hpp \
hep/mc/multi_channel.hpp \
hep/mc/multi_channel_point.hpp \
hep/mc/multi_channel_result.hpp \
hep/mc/mpi_helper.hpp \
hep/mc/mpi_plain.hpp \
hep/mc/mpi_vegas.hpp \
Expand Down
3 changes: 0 additions & 3 deletions include/hep/mc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
#include "hep/mc/mc_helper.hpp"
#include "hep/mc/mc_point.hpp"
#include "hep/mc/mc_result.hpp"
#include "hep/mc/multi_channel.hpp"
#include "hep/mc/multi_channel_point.hpp"
#include "hep/mc/multi_channel_result.hpp"
#include "hep/mc/plain.hpp"
#include "hep/mc/vegas.hpp"
#include "hep/mc/vegas_callback.hpp"
Expand Down
183 changes: 0 additions & 183 deletions include/hep/mc/multi_channel.hpp

This file was deleted.

58 changes: 0 additions & 58 deletions include/hep/mc/multi_channel_point.hpp

This file was deleted.

Loading

0 comments on commit 2be5b2c

Please sign in to comment.