From 72bb10162932939aeb4e7db17517c6c7fd0e8fec Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Fri, 17 Jun 2022 23:15:31 -0400
Subject: [PATCH] Even more commenting out of unused variables

---
 include/teqp/algorithms/VLE.hpp  | 2 +-
 include/teqp/algorithms/VLLE.hpp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/teqp/algorithms/VLE.hpp b/include/teqp/algorithms/VLE.hpp
index 9a2ada0..38b36c1 100644
--- a/include/teqp/algorithms/VLE.hpp
+++ b/include/teqp/algorithms/VLE.hpp
@@ -679,7 +679,7 @@ auto trace_VLE_isotherm_binary(const Model &model, Scalar T, VecType rhovecL0, V
             store_point();
         }
 
-        double dtold = dt;
+        //double dtold = dt;
         auto x0_previous = x0;
 
         if (opt.integration_order == 5) {
diff --git a/include/teqp/algorithms/VLLE.hpp b/include/teqp/algorithms/VLLE.hpp
index 01df660..b546789 100644
--- a/include/teqp/algorithms/VLLE.hpp
+++ b/include/teqp/algorithms/VLLE.hpp
@@ -174,7 +174,7 @@ namespace teqp {
                 y.push_back(p);
             }
             auto intersections = get_self_intersections(x, y);
-            auto& trace = traces[0];
+            //auto& trace = traces[0];
 
             auto process_intersection = [&](auto& trace, auto& i) {
                 auto rhoL1_j = traces[0][i.j].at("rhoL / mol/m^3").template get<std::valarray<double>>();
-- 
GitLab