From f9f492edfd0d0b225ddd7b77ba9f72708aade456 Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Fri, 19 Aug 2022 15:22:42 -0400
Subject: [PATCH] How did Python get into my C++ :)

---
 include/teqp/algorithms/VLE.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/teqp/algorithms/VLE.hpp b/include/teqp/algorithms/VLE.hpp
index 257ba53..03bca2a 100644
--- a/include/teqp/algorithms/VLE.hpp
+++ b/include/teqp/algorithms/VLE.hpp
@@ -853,7 +853,7 @@ auto trace_VLE_isotherm_binary(const Model &model, Scalar T, VecType rhovecL0, V
                 using ct = CriticalTracing<Model, Scalar, VecType>;
                 auto condsL = ct::get_criticality_conditions(model, T, rhovecL);
                 auto condsV = ct::get_criticality_conditions(model, T, rhovecV);
-                if (condsL[0] < 1e-12 or condsV[0] < 1e-12){
+                if (condsL[0] < 1e-12 || condsV[0] < 1e-12){
                     return true;
                 }
             }
@@ -1093,7 +1093,7 @@ auto trace_VLE_isobar_binary(const Model& model, Scalar p, Scalar T0, VecType rh
                 using ct = CriticalTracing<Model, Scalar, VecType>;
                 auto condsL = ct::get_criticality_conditions(model, T, rhovecL);
                 auto condsV = ct::get_criticality_conditions(model, T, rhovecV);
-                if (condsL[0] < 1e-12 or condsV[0] < 1e-12) {
+                if (condsL[0] < 1e-12 || condsV[0] < 1e-12) {
                     return true;
                 }
             }
-- 
GitLab