<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/4.1.92">
</HEAD>
<BODY>
dmd 2.056.<BR>
<BR>
void main(string[] args)<BR>
{<BR>
  writeln("int.max: ", int.max);<BR>
  writeln("int.min: ", int.min);<BR>
  writeln("float.max: ", float.max);<BR>
  writeln("float.min: ", float.min);<BR>
}<BR>
<BR>
it prints:<BR>
int.max: 2147483647      <-- no int >  int.max<BR>
int.min: -2147483648      <-- no int <  int.min<BR>
float.max: 3.40282e+38 <-- no float > float.max<BR>
float.min: 1.17549e-38 <--  this shoud be  -float.max (or -inf?). It's not a min...   <BR>
<BR>
assert(-1 < float.min); // passed! <BR>
This drives me crazy on neural network...<BR>
<BR>
</BODY>
</HTML>