[scram] branch master updated (5bceed6 -> 5366183)

Olzhas Rakhimov rakhimov-guest at moszumanska.debian.org
Sun Feb 12 06:14:11 UTC 2017


This is an automated email from the git hooks/post-receive script.

rakhimov-guest pushed a change to branch master
in repository scram.

      from  5bceed6   Fix the changelog for release 0.11.5-1
      adds  011b3ac   Imported Upstream version 0.11.6
       new  0c91c69   Merge tag 'upstream/0.11.6'
       new  5366183   Update the changelog for upstream 0.11.6

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .appveyor.yml                                   |   3 +-
 .codecov.yml                                    |   9 +-
 .cppdep.yml                                     |  42 ++
 .travis.yml                                     |  12 +-
 .travis/install.sh                              |  10 +-
 .travis/script.sh                               |   6 +-
 CMakeLists.txt                                  |  37 +-
 CONTRIBUTING.md                                 |   2 +-
 README.rst                                      | 169 +++---
 debian/changelog                                |   6 +
 debian/control                                  |   2 +-
 debian/copyright                                |   2 +-
 doc/bugs.rst                                    |   1 -
 doc/citation.rst                                |   4 +-
 doc/coding_standards.rst                        |   5 +-
 doc/config_file.rst                             |   2 +-
 doc/description.rst                             |   4 +-
 doc/design_description.rst                      |   2 +-
 doc/fta_algorithms.rst                          |  27 +-
 doc/fta_preprocessing.rst                       |  22 +-
 doc/input_file.rst                              |   6 +-
 doc/installation.rst                            |  22 +
 doc/opsa_support.rst                            |   5 +-
 doc/performance.rst                             |  16 +-
 doc/release/release_checklist.rst               |   3 +-
 doc/release/v0.11.6.md                          |  39 ++
 doc/{report_layer.rst => report_file.rst}       |   4 +-
 doc/scram.1                                     |   4 +-
 doc/theory.rst                                  |  26 +-
 doc/todo.rst                                    |  25 +-
 doc/xml_comments.rst                            |   2 +-
 gui/CMakeLists.txt                              |   4 -
 share/CMakeLists.txt                            |   2 +-
 share/input.rng                                 |   1 +
 share/{report_layer.rng => report.rng}          |   0
 src/CMakeLists.txt                              |   2 +-
 src/bdd.cc                                      |  62 +-
 src/bdd.h                                       |  37 +-
 src/ccf_group.cc                                |  47 +-
 src/cycle.h                                     |  33 +-
 src/element.cc                                  |   2 +-
 src/env.cc.in                                   |   4 +-
 src/env.h                                       |   6 +-
 src/event.h                                     |  35 +-
 src/expression.cc                               |  12 +-
 src/expression.h                                |  12 +-
 src/expression/arithmetic.cc                    |   6 +-
 src/expression/arithmetic.h                     |  16 +-
 src/expression/constant.h                       |   6 +-
 src/expression/exponential.cc                   |   4 +-
 src/expression/exponential.h                    |   8 +-
 src/expression/random_deviate.cc                |  93 ++-
 src/expression/random_deviate.h                 |  42 +-
 src/ext.h                                       | 159 -----
 src/ext/algorithm.h                             |  84 +++
 src/ext/combination_iterator.h                  |  97 +++
 src/ext/find_iterator.h                         |  68 +++
 src/ext/index_map.h                             |  60 ++
 src/{ => ext}/linear_map.h                      |  18 +-
 src/fault_tree_analysis.cc                      |  58 +-
 src/fault_tree_analysis.h                       | 257 ++++----
 src/importance_analysis.cc                      |  12 +-
 src/importance_analysis.h                       |  12 +-
 src/initializer.cc                              |  16 +-
 src/mocus.cc                                    |  46 +-
 src/mocus.h                                     |  26 +-
 src/model.cc                                    |   2 +-
 src/model.h                                     |   2 +-
 src/parameter.h                                 |   4 +-
 src/{boolean_graph.cc => pdag.cc}               | 720 ++++++++++------------
 src/{boolean_graph.h => pdag.h}                 | 776 ++++++++++++++----------
 src/preprocessor.cc                             | 545 ++++++-----------
 src/preprocessor.h                              | 182 +-----
 src/probability_analysis.cc                     |  48 +-
 src/probability_analysis.h                      |  71 +--
 src/random.h                                    |   2 +-
 src/reporter.cc                                 |  57 +-
 src/risk_analysis.cc                            |  54 +-
 src/settings.cc                                 |  70 ++-
 src/settings.h                                  |  78 ++-
 src/uncertainty_analysis.cc                     |  55 +-
 src/uncertainty_analysis.h                      |  42 +-
 src/zbdd.cc                                     | 145 ++---
 src/zbdd.h                                      | 282 ++++++---
 tests/CMakeLists.txt                            |   2 +-
 tests/bench_200_event_tests.cc                  |   4 +-
 tests/bench_baobab1_tests.cc                    |   4 +-
 tests/bench_bscu_tests.cc                       |   4 +-
 tests/bench_chinese_tree_tests.cc               |   4 +-
 tests/bench_core_tests.cc                       |  28 +-
 tests/bench_ne574_tests.cc                      |   4 +-
 tests/bench_small_tree_tests.cc                 |   4 +-
 tests/bench_theatre_tests.cc                    |   4 +-
 tests/bench_three_motor_tests.cc                |   4 +-
 tests/bench_two_train_tests.cc                  |   4 +-
 tests/ccf_group_tests.cc                        |  18 +-
 tests/config_tests.cc                           |   8 +-
 tests/expression_tests.cc                       |  28 +-
 tests/fault_tree_tests.cc                       |  47 +-
 tests/initializer_tests.cc                      |   2 +-
 tests/input/fta/correct_expressions.xml         |   1 +
 tests/linear_map_tests.cc                       |   4 +-
 tests/{boolean_graph_tests.cc => pdag_tests.cc} | 150 +++--
 tests/performance_tests.cc                      |   2 +-
 tests/risk_analysis_tests.cc                    |  11 +-
 tests/settings_tests.cc                         |   4 +-
 106 files changed, 2653 insertions(+), 2689 deletions(-)
 create mode 100644 .cppdep.yml
 create mode 100644 doc/release/v0.11.6.md
 rename doc/{report_layer.rst => report_file.rst} (96%)
 rename share/{report_layer.rng => report.rng} (100%)
 delete mode 100644 src/ext.h
 create mode 100644 src/ext/algorithm.h
 create mode 100644 src/ext/combination_iterator.h
 create mode 100644 src/ext/find_iterator.h
 create mode 100644 src/ext/index_map.h
 rename src/{ => ext}/linear_map.h (96%)
 rename src/{boolean_graph.cc => pdag.cc} (59%)
 rename src/{boolean_graph.h => pdag.h} (59%)
 rename tests/{boolean_graph_tests.cc => pdag_tests.cc} (76%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/scram.git



More information about the debian-science-commits mailing list