From ee97823b5a4096a86a0c2adfbd6c76dfd978cd50 Mon Sep 17 00:00:00 2001 From: Lisa Biermann <51697431+lisabiermann@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:18:15 +0200 Subject: [PATCH] Fix transition history for multi-step transitions (#151) * reset completion temperature tmp storage * Bump version number --- CMakeLists.txt | 2 +- README.md | 2 +- src/transition_tracer/transition_tracer.cpp | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 386febb30..2a4dd2ec9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.23) project( BSMPT - VERSION 3.0.3 + VERSION 3.0.4 LANGUAGES C CXX DESCRIPTION "BSMPT - Beyond the Standard Model Phase Transitions : A C++ package for the computation of the EWPT in BSM models" diff --git a/README.md b/README.md index 9881d473f..db857c1a7 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ SPDX-FileCopyrightText: 2021 Philipp Basler, Margarete Mühlleitner and Jonas M SPDX-License-Identifier: GPL-3.0-or-later --> -Program: BSMPT version 3.0.3 +Program: BSMPT version 3.0.4 Released by: Philipp Basler, Lisa Biermann, Margarete Mühlleitner, Jonas Müller, Rui Santos and João Viana diff --git a/src/transition_tracer/transition_tracer.cpp b/src/transition_tracer/transition_tracer.cpp index c8a38faa8..5041100cc 100644 --- a/src/transition_tracer/transition_tracer.cpp +++ b/src/transition_tracer/transition_tracer.cpp @@ -413,6 +413,7 @@ TransitionTracer::TransitionTracer(user_input &input) // store current false phase transition_history.push_back(tmp_phase_id); tmp_next_phase_id = -1; + tmp_compl_temp = -1; for (auto pair : vec_coex) {