Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stdlib_math] add is_close routines. #488

Merged
merged 18 commits into from
Dec 18, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into add_close
zoziha authored Sep 29, 2021
commit 71021bbcc87ab154e12dc4fed3b637604a196e36
10 changes: 7 additions & 3 deletions src/Makefile.manual
Original file line number Diff line number Diff line change
@@ -27,8 +27,8 @@ SRCFYPP = \
stdlib_stats_moment_scalar.fypp \
stdlib_stats_var.fypp \
stdlib_math.fypp \
stdlib_math_linspace.fypp \
stdlib_math_logspace.fypp \
stdlib_math_linspace.fypp \
stdlib_math_logspace.fypp \
stdlib_math_is_close.fypp \
stdlib_stats_distribution_PRNG.fypp \
stdlib_string_type.fypp \
@@ -88,7 +88,8 @@ stdlib_io.o: \
stdlib_kinds.o \
stdlib_ascii.o
stdlib_linalg.o: \
stdlib_kinds.o
stdlib_kinds.o \
stdlib_optval.o
stdlib_linalg_diag.o: \
stdlib_linalg.o \
stdlib_kinds.o
@@ -170,3 +171,6 @@ stdlib_math_arange.o: \
stdlib_linalg_outer_product.o: stdlib_linalg.o
stdlib_math_is_close.o: \
stdlib_math.o
stdlib_stringlist_type.o: stdlib_string_type.o \
stdlib_math.o \
stdlib_optval.o
You are viewing a condensed version of this merge commit. You can view the full changes here.