14 linhas
346 B
PHP
14 linhas
346 B
PHP
--TEST--
|
|
Test function fann_set_cascade_weight_multiplier() by calling it with its expected arguments
|
|
--FILE--
|
|
<?php
|
|
|
|
$ann = fann_create_standard( 3, 3, 2, 1 );
|
|
|
|
var_dump( fann_set_cascade_weight_multiplier( $ann, 0.5 ) );
|
|
var_dump( round( fann_get_cascade_weight_multiplier( $ann ), 2 ) == round( 0.5, 2 ) );
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|