eugeneloza / decoherence

Project moved to https://gitlab.com/EugeneLoza/decoherence
GNU General Public License v3.0
10 stars 7 forks source link

Automate max-min finding #467

Closed eugeneloza closed 6 years ago

eugeneloza commented 6 years ago

by inline function like

procedure CompareMin(var a: Integer; const x: Integer); inline;
begin
  if a < x then a := x;
end;

overloaded for different data types.