Age | Commit message (Expand) | Author |
2021-02-10 | Fix collision between solver type and solver type variable.•••* src/utils.sc (with-root-fsolver): Fix collision between solver type
and solver type variable.
| Arun Isaac |
2021-02-10 | Declare planar, solid angle conversion functions as public.•••* src/nd-random.sc (planar-angle->solid-angle,
solid-angle->planar-angle): Declare these to be a part of the public
interface of the module.
| Arun Isaac |
2021-02-05 | Use let* instead of declare and set.•••* src/macros/macros.sc (with-alloc): Use let* instead of declare and
set.
| Arun Isaac |
2021-02-05 | Replace underscores in identifiers with hyphens.•••* src/utils.sc (angle-between-vectors, gaussian-cdf, bisection,
bisection-rlimit): Replace underscores in identifiers with hyphens.
| Arun Isaac |
2021-02-05 | Migrate C source to SC.•••sph-sc is a scheme-like S-expression syntax for C. It elements much of
the pain and repetition involved in writing C syntax.
* src/extent-sampling.c, src/gaussian-nd-random.c, src/nd-random.c,
src/oracles.c, src/utils.c: Delete files.
* src/extent-sampling.sc, src/gaussian-nd-random.sc,
src/macros/macros.sc, src/nd-random.sc, src/oracles.sc, src/utils.sc:
New files.
* CMakeLists.txt: Generate C source files from SC source files.
| Arun Isaac |
2021-02-05 | Declare infinity_norm as static.•••* src/oracles.c (infinity_norm): Declare as static.
| Arun Isaac |
2021-02-05 | Remove unused geometric progression functions.•••* include/utils.h (gprate, gpterm): Delete function prototype
declarations.
* src/utils.c (gprate, gpterm): Delete functions.
| Arun Isaac |
2021-02-05 | Remove unused extent oracles.•••* include/oracles.c (symmetric_spiral_extent_oracle,
right_triangle_extent_oracle, right_triangle_true_volume,
sphere_extent_oracle, sphere_maximum_extent, plane_extent_oracle):
Delete function prototype declarations.
* src/oracles.c (symmetric_spiral_extent_oracle,
right_triangle_extent_oracle, right_triangle_true_volume,
sphere_extent_oracle, sphere_maximum_extent, plane_extent_oracle):
Delete functions.
| Arun Isaac |
2021-02-03 | Move source files and headers to separate directories.•••* extent-sampling.h, gaussian-nd-random.h, nd-random.h, oracles.h,
utils.h: Move into include directory.
* extent-sampling.c, gaussian-nd-random.c, nd-random.c, oracles.c,
utils.c: Move into src directory.
* CMakeLists.txt: Set include as include directory. Look for source
files inside src directory.
| Arun Isaac |