Skip to content

Commit dea7be1

Browse files
authored
Update test_all.php
1 parent 31aa82d commit dea7be1

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

examples/logic_gates/test_all.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,8 @@
33
function test($net, $test_data) {
44
$train_file = (dirname(__FILE__) . '/' . $net . '_float.net');
55
if (!is_file($train_file)) {
6-
<<<<<<< HEAD:examples/logic_gates/test_all.php
76
print('The file ' . $net . '_float.net has not been created! Please run train_all.php to generate it.<br>' . PHP_EOL);
8-
} else {
9-
=======
10-
print('The file ' . $net . '_float.net has not been created! Please run <a href="train_all.php">train_all.php</a> to generate it.<br>' . PHP_EOL);
117
} else{
12-
>>>>>>> origin/master:examples/test_all.php
138
$ann = fann_create_from_file($train_file);
149
if ($ann) {
1510
$calc_out = fann_run($ann, $test_data);

0 commit comments

Comments
 (0)