Arquivos
php-fann/tests/fann_set_quickprop_decay_basic.phpt
2013-04-18 19:31:13 +01:00

14 linhas
324 B
PHP

--TEST--
Test function fann_set_quickprop_decay() by calling it with its expected arguments
--FILE--
<?php
$ann = fann_create_standard( 3, 3, 2, 1 );
var_dump( fann_set_quickprop_decay( $ann, -0.0002 ) );
var_dump( round( fann_get_quickprop_decay( $ann ), 2 ) == round( -0.0002, 2 ) );
?>
--EXPECT--
bool(true)
bool(true)