📄 baseinput.h
字号:
/* Copyright (C) 2004 Timothy C.A. Molteno This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*/#ifndef __Base_Input__#define __Base_Input__#include "math_util.h"#include <fstream>#include <sstream>nec_float diff(nec_float a, nec_float b){ if (a == b) return 0; if ((a < 1e-8) && (b < 1e-8)) return 0; nec_float sub = a - b; nec_float sum = a + b; nec_float ret = sub*sub; if ((a != 0) && (b != 0)) ret /= sum*sum; ret = sqrt(ret); if (ret > 1e-2) { cout << " diff(" << a << "," << b << ") = " << ret << endl; } return ret;}nec_float diff(nec_complex a, nec_complex b){ if (a == b) return 0; if ((abs(a) < 1e-8) && (abs(b) < 1e-8)) return 0; nec_float ret = norm(a - b); nec_float sum = norm(a + b); if (sum != 0) ret /= sum; ret = sqrt(ret); if (ret > 1e-2) { stringstream ss; cout << " diff(" << a << "," << b << ") = " << ret << endl; } return ret;}class BaseInput{public: BaseInput(const std::string& filename) : m_filename(filename), m_stream(filename.c_str()) { } private: char linec[512];protected: std::string m_filename; std::ifstream m_stream; string readline() { m_stream.getline(&linec[0],512); return string(&linec[0]); } double read_sci(std::istream& is) { double x; is.setf(ios_base::skipws); is >> x; return x; } double read_fixed(std::istream& is) { double x; is.setf(ios_base::skipws); is >> x; return x; }};#endif /* __Base_Input__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -