alexbrandmeyer@626
|
1 //
|
alexbrandmeyer@626
|
2 // carfac_test.h
|
alexbrandmeyer@626
|
3 // CARFAC Open Source C++ Library
|
alexbrandmeyer@626
|
4 //
|
alexbrandmeyer@626
|
5 // Created by Alex Brandmeyer on 5/22/13.
|
alexbrandmeyer@626
|
6 //
|
alexbrandmeyer@626
|
7 // This C++ file is part of an implementation of Lyon's cochlear model:
|
alexbrandmeyer@626
|
8 // "Cascade of Asymmetric Resonators with Fast-Acting Compression"
|
alexbrandmeyer@626
|
9 // to supplement Lyon's upcoming book "Human and Machine Hearing"
|
alexbrandmeyer@626
|
10 //
|
alexbrandmeyer@626
|
11 // Licensed under the Apache License, Version 2.0 (the "License");
|
alexbrandmeyer@626
|
12 // you may not use this file except in compliance with the License.
|
alexbrandmeyer@626
|
13 // You may obtain a copy of the License at
|
alexbrandmeyer@626
|
14 //
|
alexbrandmeyer@626
|
15 // http://www.apache.org/licenses/LICENSE-2.0
|
alexbrandmeyer@626
|
16 //
|
alexbrandmeyer@626
|
17 // Unless required by applicable law or agreed to in writing, software
|
alexbrandmeyer@626
|
18 // distributed under the License is distributed on an "AS IS" BASIS,
|
alexbrandmeyer@626
|
19 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
alexbrandmeyer@626
|
20 // See the License for the specific language governing permissions and
|
alexbrandmeyer@626
|
21 // limitations under the License.
|
alexbrandmeyer@626
|
22
|
alexbrandmeyer@626
|
23 #ifndef __CARFAC_Open_Source_C___Library__carfac_test__
|
alexbrandmeyer@626
|
24 #define __CARFAC_Open_Source_C___Library__carfac_test__
|
alexbrandmeyer@626
|
25
|
alexbrandmeyer@626
|
26 // <fstream> is currently used for reading text data in. This can be replaced by
|
alexbrandmeyer@626
|
27 // another file reader.
|
alexbrandmeyer@626
|
28 #include <fstream>
|
alexbrandmeyer@626
|
29 // GoogleTest is now included for running unit tests
|
alexbrandmeyer@626
|
30 #include <gtest/gtest.h>
|
alexbrandmeyer@626
|
31 #include "carfac.h"
|
alexbrandmeyer@626
|
32
|
alexbrandmeyer@626
|
33 // This variable defines the location of the test data used to compare this
|
alexbrandmeyer@626
|
34 // C++ version's output with that of the Matlab version. It should be changed
|
alexbrandmeyer@626
|
35 // when trying to build on a different system.
|
alexbrandmeyer@626
|
36 #define TEST_SRC_DIR "/Users/alexbrandmeyer/aimc/carfac/test_data/"
|
alexbrandmeyer@626
|
37 // Here we specify the level to which the output should match (10 decimals).
|
ronw@630
|
38 #define PRECISION_LEVEL 1.0e-10
|
alexbrandmeyer@626
|
39
|
alexbrandmeyer@626
|
40 #endif /* defined(__CARFAC_Open_Source_C___Library__carfac_test__) */
|