From 90a855fb3d900c3bd7850a22f39e9b513b09b273 Mon Sep 17 00:00:00 2001 From: David Williams-Young Date: Mon, 6 Nov 2023 15:47:44 -0800 Subject: [PATCH] Update README with string generators --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e1a06b8..a19b53d 100644 --- a/README.md +++ b/README.md @@ -117,9 +117,9 @@ found in `test/1d_quadratures.cxx` and `test/spherical_generator.cxx`. Below is a simple invocation example for the generation of an atomic sphere via the runtime generator: ``` -using namespace IntegratorXX; // Import namespace -auto rad_spec = RadialQuad::MuraKnowles; // MK Radial scheme -auto ang_spec = AngularQuad::AhrensBeylkin; // AH Angular scheme +using namespace IntegratorXX; // Import namespace +auto rad_spec = radial_from_string("MuraKnowles"); // MK Radial scheme +auto ang_spec = angular_from_string("AhrensBeylkin"); // AH Angular scheme size_t nrad = 99; size_t nang = 372; double rscal = 2.0;