crawlserv++  [under development]
Application for crawling and analyzing textual content of websites.
tomoto.h
Go to the documentation of this file.
1 /*
2  *
3  * ---
4  *
5  * Copyright (C) 2020 Anselm Schmidt (ans[ät]ohai.su)
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version in addition to the terms of any
11  * licences already herein identified.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  *
21  * ---
22  *
23  * tomoto.h
24  *
25  * Silently include tomoto (at least in GCC).
26  *
27  * Created on: Feb 6, 2021
28  * Author: ans
29  */
30 
31 #ifdef __GNUC__
32 
33 #pragma GCC diagnostic push
34 #pragma GCC diagnostic ignored "-Wignored-attributes"
35 #pragma GCC diagnostic push
36 #pragma GCC diagnostic ignored "-Wignored-qualifiers"
37 #pragma GCC diagnostic push
38 #pragma GCC diagnostic ignored "-Wreorder"
39 #pragma GCC diagnostic push
40 #pragma GCC diagnostic ignored "-Wsign-compare"
41 #pragma GCC diagnostic push
42 #pragma GCC diagnostic ignored "-Wswitch"
43 #pragma GCC diagnostic push
44 #pragma GCC diagnostic ignored "-Wunused-local-typedefs"
45 #pragma GCC diagnostic push
46 #pragma GCC diagnostic ignored "-Wunused-parameter"
47 #pragma GCC diagnostic push
48 #pragma GCC diagnostic ignored "-Wunused-variable"
49 
50 #endif
51 
52 #if _WIN64 || __x86_64__
53 
54 #ifdef __SSE2__
55 #undef __SSE2__
56 #endif
57 
58 #endif
59 
60 #include "../../_extern/tomotopy/src/Labeling/FoRelevance.h"
61 #include "../../_extern/tomotopy/src/TopicModel/HDPModel.hpp"
62 #include "../../_extern/tomotopy/src/TopicModel/LDAModel.hpp"
63 
64 #ifdef __GNUC__
65 
66 #pragma GCC diagnostic pop
67 #pragma GCC diagnostic pop
68 #pragma GCC diagnostic pop
69 #pragma GCC diagnostic pop
70 #pragma GCC diagnostic pop
71 #pragma GCC diagnostic pop
72 #pragma GCC diagnostic pop
73 
74 #endif