From a11288ff2c9270cfd441d49061e19256f71cad58 Mon Sep 17 00:00:00 2001
From: Ian Bell <ian.bell@nist.gov>
Date: Fri, 17 Sep 2021 11:11:39 -0400
Subject: [PATCH] Remove ambiguity for n=2

---
 src/time_Ar0n.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/time_Ar0n.cpp b/src/time_Ar0n.cpp
index 93bd083..9ed87c9 100644
--- a/src/time_Ar0n.cpp
+++ b/src/time_Ar0n.cpp
@@ -77,7 +77,7 @@ auto some_teqp(obtainablethings thing, const Taus& taus, const Deltas& deltas, c
                 else if constexpr (itau == 0 && idelta == 2) {
                     o += tdx::get_Ar02(model, Ts[j], rhos[j], c);
                 }
-                else if constexpr (itau == 0 && idelta > 1) {
+                else if constexpr (itau == 0 && idelta > 2) {
                     o += tdx::get_Ar0n<idelta>(model, Ts[j], rhos[j], c)[idelta];
                 }
             }
-- 
GitLab