Skip to content

Commit

Permalink
Update README with string generators
Browse files Browse the repository at this point in the history
  • Loading branch information
wavefunction91 committed Nov 6, 2023
1 parent acac7e6 commit 90a855f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 90a855f

Please sign in to comment.