mirror of
https://github.com/BlackLight/neuralpp.git
synced 2024-12-28 04:05: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/>. *
|
||||
**************************************************************************************************/
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
#include "neural++.hpp"
|
||||
#include "Markup.h"
|
||||
|
||||
using std::vector;
|
||||
using std::string;
|
||||
using std::ifstream;
|
||||
using std::ofstream;
|
||||
using std::stringstream;
|
||||
|
||||
namespace neuralpp {
|
||||
double __actv(double prop) {
|
||||
return prop;
|
||||
|
|
Loading…
Reference in a new issue