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