Ice Sheet System Model  4.18
Code documentation
Functions
extrema.cpp File Reference

min and max functions More...

#include "./types.h"

Go to the source code of this file.

Functions

IssmDouble min (IssmDouble a, IssmDouble b)
 
int min (int a, int b)
 
IssmDouble max (IssmDouble a, IssmDouble b)
 
int max (int a, int b)
 

Detailed Description

min and max functions

Definition in file extrema.cpp.

Function Documentation

◆ min() [1/2]

IssmDouble min ( IssmDouble  a,
IssmDouble  b 
)

Definition at line 14 of file extrema.cpp.

14  {
15  if (a<b)return a;
16  else return b;
17 }

◆ min() [2/2]

int min ( int  a,
int  b 
)

Definition at line 19 of file extrema.cpp.

19  {
20  if (a<b)return a;
21  else return b;
22 }

◆ max() [1/2]

IssmDouble max ( IssmDouble  a,
IssmDouble  b 
)

Definition at line 24 of file extrema.cpp.

24  {
25  if (a>b)return a;
26  else return b;
27 }

◆ max() [2/2]

int max ( int  a,
int  b 
)

Definition at line 29 of file extrema.cpp.

29  {
30  if (a>b)return a;
31  else return b;
32 }