mirror of
https://github.com/BlackLight/neuralpp.git
synced 2024-12-28 20:25:12 +01:00
No more using namespace std
This commit is contained in:
parent
5cb0faef82
commit
458eab5e99
1 changed files with 6 additions and 3 deletions
|
@ -11,15 +11,18 @@
|
||||||
* this program. If not, see <http://www.gnu.org/licenses/>. *
|
* this program. If not, see <http://www.gnu.org/licenses/>. *
|
||||||
**************************************************************************************************/
|
**************************************************************************************************/
|
||||||
|
|
||||||
#include <iostream>
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
#include "neural++.hpp"
|
#include "neural++.hpp"
|
||||||
#include "Markup.h"
|
#include "Markup.h"
|
||||||
|
|
||||||
|
using std::vector;
|
||||||
|
using std::string;
|
||||||
|
using std::ifstream;
|
||||||
|
using std::ofstream;
|
||||||
|
using std::stringstream;
|
||||||
|
|
||||||
namespace neuralpp {
|
namespace neuralpp {
|
||||||
double __actv(double prop) {
|
double __actv(double prop) {
|
||||||
return prop;
|
return prop;
|
||||||
|
|
Loading…
Reference in a new issue