What is assert(false) doing in the following code?
public float[] evaluate(float[] inputs)
{
    // propagate the inputs through all neural network
    // and return the outputs
    assert(false);
    float outputs[] = new float[inputs.length];
    for( int i = 0; i < _layers.size(); ++i ) {  
        outputs = _layers.get(i).evaluate(inputs);
        inputs = outputs;
    }
    return outputs;
}
 
     
    