[scram] branch master updated (97dd05f -> 900b9d2)

Olzhas Rakhimov rakhimov-guest at moszumanska.debian.org
Tue Aug 15 05:26:13 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  97dd05f   Bump the standard version to 4.0.1
      adds  3df3369   Imported Upstream version 0.15.0
       new  555d3c9   Merge tag 'upstream/0.15.0'
       new  900b9d2   Update configuration for new upstream 0.15.0

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                                      |   7 +-
 CMakeLists.txt                                     |  26 +--
 cmake/ScramBundle.cmake                            |  13 ++
 debian/changelog                                   |  10 +
 debian/control                                     |   1 -
 ...GUI-Update-.desktop-with-URL-and-Keywords.patch |  23 --
 debian/patches/series                              |   1 -
 debian/scram-gui.1                                 |   2 +-
 debian/scram-gui.install                           |   1 -
 debian/scram.1                                     |   2 +-
 debian/scram.install                               |   3 +-
 doc/installation.rst                               |   4 +
 doc/opsa_support.rst                               |   1 +
 doc/release/v0.15.0.md                             |  33 +++
 gui/CMakeLists.txt                                 |  79 +++----
 gui/diagram.cpp                                    |  30 +--
 gui/diagram.h                                      |   6 +-
 gui/elementcontainermodel.cpp                      |  25 ++-
 gui/elementcontainermodel.h                        |  14 ++
 gui/main.cpp                                       | 213 +++++++++++++++++-
 gui/mainwindow.cpp                                 |   4 +-
 gui/scram-gui.desktop                              |   2 +
 gui/scramgui.cpp                                   | 240 ---------------------
 input/EventTrees/attack_alignment.xml              |   6 +
 .../TwoTrain/two_train_alignment.xml               |  50 +++--
 scripts/{scram.sh => scram}                        |   2 +-
 share/input.rng                                    |  32 +++
 share/report.rng                                   |  12 ++
 src/CMakeLists.txt                                 |   1 +
 src/alignment.cc                                   |  50 +++++
 src/alignment.h                                    |  95 ++++++++
 src/analysis.cc                                    |   6 +-
 src/analysis.h                                     |  11 +-
 src/ccf_group.cc                                   |   9 +-
 src/cycle.h                                        |   1 +
 src/event_tree.h                                   | 201 +----------------
 src/event_tree_analysis.cc                         |   1 +
 src/ext/float_compare.h                            |  46 ++++
 src/initializer.cc                                 |  51 +++++
 src/initializer.h                                  |   6 +-
 src/{event_tree.h => instruction.h}                | 220 +------------------
 src/model.cc                                       |   5 +
 src/model.h                                        |   5 +
 src/reporter.cc                                    |  25 ++-
 src/reporter.h                                     |   4 +-
 src/risk_analysis.cc                               |  55 ++++-
 src/risk_analysis.h                                |  44 +++-
 tests/CMakeLists.txt                               |   1 +
 tests/alignment_tests.cc                           |  78 +++++++
 tests/bench_200_event_tests.cc                     |   2 +-
 tests/bench_attack.cc                              |   2 +-
 tests/bench_bscu_tests.cc                          |   2 +-
 tests/bench_core_tests.cc                          |  66 +++---
 tests/bench_gas_leak.cc                            |   2 +-
 tests/bench_lift_tests.cc                          |   2 +-
 tests/bench_ne574_tests.cc                         |   2 +-
 tests/bench_small_tree_tests.cc                    |   2 +-
 tests/bench_theatre_tests.cc                       |   2 +-
 tests/bench_three_motor_tests.cc                   |   2 +-
 tests/bench_two_train_tests.cc                     |   2 +-
 tests/initializer_tests.cc                         |  33 +++
 tests/input/model/duplicate_alignment.xml          |   9 +
 tests/input/model/duplicate_phases.xml             |   7 +
 .../empty_alignment.xml}                           |   2 +-
 tests/input/model/excess_alignment.xml             |   7 +
 tests/input/model/incomplete_alignment.xml         |   6 +
 tests/input/model/invalid_phase_fraction.xml       |   6 +
 tests/input/model/negative_phase_fraction.xml      |   6 +
 tests/input/model/private_phases.xml               |   9 +
 .../model/undefined_target_set_house_event.xml     |  10 +
 tests/input/model/valid_alignment.xml              |   6 +
 tests/input/model/valid_sum_alignment.xml          |   9 +
 tests/input/model/zero_phase_fraction.xml          |   6 +
 tests/risk_analysis_tests.cc                       | 103 +++++----
 tests/risk_analysis_tests.h                        |   7 +-
 75 files changed, 1154 insertions(+), 915 deletions(-)
 create mode 100644 cmake/ScramBundle.cmake
 delete mode 100644 debian/patches/0001-GUI-Update-.desktop-with-URL-and-Keywords.patch
 delete mode 100644 debian/patches/series
 mode change 100755 => 100644 debian/scram.install
 create mode 100644 doc/release/v0.15.0.md
 delete mode 100644 gui/scramgui.cpp
 create mode 100644 input/EventTrees/attack_alignment.xml
 copy tests/input/fta/doubly_defined_ccf_group.xml => input/TwoTrain/two_train_alignment.xml (50%)
 rename scripts/{scram.sh => scram} (96%)
 create mode 100644 src/alignment.cc
 create mode 100644 src/alignment.h
 create mode 100644 src/ext/float_compare.h
 copy src/{event_tree.h => instruction.h} (53%)
 create mode 100644 tests/alignment_tests.cc
 create mode 100644 tests/input/model/duplicate_alignment.xml
 create mode 100644 tests/input/model/duplicate_phases.xml
 copy tests/input/{eta/initiating_event.xml => model/empty_alignment.xml} (54%)
 create mode 100644 tests/input/model/excess_alignment.xml
 create mode 100644 tests/input/model/incomplete_alignment.xml
 create mode 100644 tests/input/model/invalid_phase_fraction.xml
 create mode 100644 tests/input/model/negative_phase_fraction.xml
 create mode 100644 tests/input/model/private_phases.xml
 create mode 100644 tests/input/model/undefined_target_set_house_event.xml
 create mode 100644 tests/input/model/valid_alignment.xml
 create mode 100644 tests/input/model/valid_sum_alignment.xml
 create mode 100644 tests/input/model/zero_phase_fraction.xml

-- 
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