From 400150422078d085b3da4f02dadf2447032d67c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Laurenti?= Date: Mon, 23 Sep 2024 18:42:31 +0200 Subject: [PATCH] Use exact aQg30 in examples --- examples/test.cpp | 4 ++-- examples/test.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/test.cpp b/examples/test.cpp index ca2b4c1..920b5dc 100644 --- a/examples/test.cpp +++ b/examples/test.cpp @@ -19,10 +19,10 @@ int main() { int nf = 4; ApproximateCoefficientFunction F2g( - 3, '2', 'g', true, "abmp", 1e-3, 1e-3, 1000, "analytical", 25000 + 3, '2', 'g', true, "exact", 1e-3, 1e-3, 1000, "analytical", 25000 ); ApproximateCoefficientFunction FLg( - 3, 'L', 'g', true, "abmp", 1e-3, 1e-3, 1000, "analytical", 25000 + 3, 'L', 'g', true, "exact", 1e-3, 1e-3, 1000, "analytical", 25000 ); ApproximateCoefficientFunction F2q( 3, '2', 'q', true, "exact", 1e-3, 1e-3, 1000 diff --git a/examples/test.py b/examples/test.py index fe96382..9404a94 100644 --- a/examples/test.py +++ b/examples/test.py @@ -4,8 +4,8 @@ nf = 4 m = 4.92 -F2g = ad.ApproximateCoefficientFunction(3, '2', 'g', True, "abmp", 1e-3, 1e-3, 1000, "analytical", 25000) -FLg = ad.ApproximateCoefficientFunction(3, 'L', 'g', True, "abmp", 1e-3, 1e-3, 1000, "analytical", 25000) +F2g = ad.ApproximateCoefficientFunction(3, '2', 'g', True, "exact", 1e-3, 1e-3, 1000, "analytical", 25000) +FLg = ad.ApproximateCoefficientFunction(3, 'L', 'g', True, "exact", 1e-3, 1e-3, 1000, "analytical", 25000) F2q = ad.ApproximateCoefficientFunction(3, '2', 'q', True, "exact", 1e-3, 1e-3, 1000) FLq = ad.ApproximateCoefficientFunction(3, 'L', 'q', True, "exact", 1e-3, 1e-3, 1000)