<div>function: gaussian-random (&optional min max)</div><div><br></div>If gaussian-random is called with a value for min and nil for max (or vice versa), the function could enter an infinite loop.<div><br></div><div>example (gaussian-random 100 nil)  almost always causes an infinite loop.</div>
<div><br></div><div>If the first call to the local function "gauss" creates a value that does not satisify min, </div><div>then the local function "guard" enters an infinite loop because guard is called with a value for max that is less than min.</div>
<div><br></div><div>Sincerely,</div><div><br></div><div>Andy Peterson</div>