diff options
| author | Julian Weigt <juw@posteo.de> | 2026-01-15 21:17:07 +0100 |
|---|---|---|
| committer | Julian Weigt <juw@posteo.de> | 2026-02-04 15:55:52 +0100 |
| commit | d78cc5836306c3231bb958bffe88ce54c898b512 (patch) | |
| tree | d26da095166ce52ebda1cb59966c84b9d03b1200 /double.c | |
| parent | 8e5bf1e894d36ee939653da7bf029f7a10f002d6 (diff) | |
Introduce is_greater_certainly and is_greater_possibly to make more robust the printing and finding of records.
Start reorganizing to allow eventual printing of all records.
Diffstat (limited to 'double.c')
| -rw-r--r-- | double.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -11,7 +11,9 @@ double sum(double d1, double d2){ return d1+d2; } double difference(double d1, double d2){ return d1-d2; } -bool is_greater(double d1, double d2){ return (d1 > d2); } +bool is_greater_certainly(double d1, double d2){ return (d1 > d2); } + +bool is_greater_possibly(double d1, double d2){ return is_greater_certainly(d1,d2); } double maximum(double d1, double d2){ if(d1>d2) return d1; |
