Skip to content

Commit 2a360ba

Browse files
author
Nicola Pezzotti
committed
Add the WAOW-Vis application
1 parent 4e25445 commit 2a360ba

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if(APP_COMMAND_LINE)
2424
add_subdirectory (applications/command_line_tools)
2525
add_subdirectory (applications/command_line_tools/hsne_volume_analyzer)
2626
add_subdirectory (applications/command_line_tools/data_conversion)
27-
#add_subdirectory (applications/command_line_tools/waow_visualization)
27+
add_subdirectory (applications/command_line_tools/waow_visualization)
2828
endif(APP_COMMAND_LINE)
2929

3030
if(APP_VISUAL_TESTS)
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
*
3+
* Copyright (c) 2014, Nicola Pezzotti (Delft University of Technology)
4+
* All rights reserved.
5+
*
6+
* Redistribution and use in source and binary forms, with or without
7+
* modification, are permitted provided that the following conditions are met:
8+
* 1. Redistributions of source code must retain the above copyright
9+
* notice, this list of conditions and the following disclaimer.
10+
* 2. Redistributions in binary form must reproduce the above copyright
11+
* notice, this list of conditions and the following disclaimer in the
12+
* documentation and/or other materials provided with the distribution.
13+
* 3. All advertising materials mentioning features or use of this software
14+
* must display the following acknowledgement:
15+
* This product includes software developed by the Delft University of Technology.
16+
* 4. Neither the name of the Delft University of Technology nor the names of
17+
* its contributors may be used to endorse or promote products derived from
18+
* this software without specific prior written permission.
19+
*
20+
* THIS SOFTWARE IS PROVIDED BY NICOLA PEZZOTTI ''AS IS'' AND ANY EXPRESS
21+
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
23+
* EVENT SHALL NICOLA PEZZOTTI BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25+
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
26+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
28+
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
29+
* OF SUCH DAMAGE.
30+
*
31+
*/
32+
33+
#include "embedding_equalizer_inl.h"
34+
35+
namespace hdi{
36+
namespace dr{
37+
template class EmbeddingEqualizer<float>;
38+
template class EmbeddingEqualizer<double>;
39+
}
40+
}

0 commit comments

Comments
 (0)