MNP02/tags
2018-05-08 16:36:44 +02:00

46 lines
3.6 KiB
Plaintext

!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.8 //
IterativeSolver .\solver.h /^IterativeSolver::IterativeSolver() : error(1e-9) {}$/;" f class:IterativeSolver
IterativeSolver .\solver.h /^IterativeSolver::IterativeSolver(double error) : error(error) {}$/;" f class:IterativeSolver
IterativeSolver .\solver.h /^class IterativeSolver : Solver {$/;" c
JacobiSolver .\solver.h /^class JacobiSolver : Solver {$/;" c
Matrix .\matrix.h /^Matrix<T>::Matrix(const Matrix<T> &m) : Matrix(m._rows, m._cols) {$/;" f class:Matrix
Matrix .\matrix.h /^Matrix<T>::Matrix(size_t n) : Matrix(n, n) { }$/;" f class:Matrix
Matrix .\matrix.h /^Matrix<T>::Matrix(size_t n, size_t m) : _rows(n), _cols(m), values(new T[m*n]) {$/;" f class:Matrix
Matrix .\matrix.h /^Matrix<T>::Matrix(std::initializer_list<std::initializer_list<T>> values) : Matrix(values.size(), values.begin()->size()) {$/;" f class:Matrix
Matrix .\matrix.h /^class Matrix {$/;" c
N .\main.cpp /^const size_t N = 10;$/;" v
NORM_INF .\matrix.h 11;" d
P02_MATRIX_H .\matrix.h 2;" d
P02_SOLVER_H .\solver.h 2;" d
Solver .\solver.h /^class Solver {$/;" c
_cols .\matrix.h /^ size_t _rows, _cols;$/;" m class:Matrix
_rows .\matrix.h /^ size_t _rows, _cols;$/;" m class:Matrix
cols .\matrix.h /^inline size_t Matrix<T>::cols() const {$/;" f class:Matrix
diag .\matrix.h /^Matrix<T> Matrix<T>::diag(size_t n, T value, int offset) {$/;" f class:Matrix
error .\solver.h /^ double error;$/;" m class:IterativeSolver
hvec .\matrix.h /^Matrix<T> Matrix<T>::hvec(std::initializer_list<T> values) {$/;" f class:Matrix
iteration .\solver.h /^Matrix<double> JacobiSolver::iteration(const Matrix<double>& M, const Matrix<double>& b, const Matrix<double>& old)$/;" f class:JacobiSolver
main .\main.cpp /^int main(int argc, const char* argv[])$/;" f
noexcept .\matrix.h /^ self_t& operator=(self_t&& rhs) noexcept;$/;" m class:Matrix
norm .\matrix.h /^double norm(const Matrix<T>& matrix, unsigned norm = 2)$/;" f
operator () .\matrix.h /^T &Matrix<T>::operator()(size_t n, size_t m) {$/;" f class:Matrix
operator () .\matrix.h /^T Matrix<T>::operator()(size_t n, size_t m) const {$/;" f class:Matrix
operator * .\matrix.h /^Matrix<T> Matrix<T>::operator*(const Matrix<T> &rhs) {$/;" f class:Matrix
operator * .\matrix.h /^Matrix<T> Matrix<T>::operator*(const T rhs) {$/;" f class:Matrix
operator + .\matrix.h /^Matrix<T> Matrix<T>::operator+(const Matrix<T> &rhs) {$/;" f class:Matrix
operator + .\matrix.h /^Matrix<T> Matrix<T>::operator+(const T rhs) {$/;" f class:Matrix
operator - .\matrix.h /^Matrix<T> Matrix<T>::operator-() {$/;" f class:Matrix
operator - .\matrix.h /^Matrix<T> Matrix<T>::operator-(const Matrix<T>& rhs) {$/;" f class:Matrix
operator << .\matrix.h /^std::ostream &operator<<(std::ostream &os, const Matrix<T> &matrix) {$/;" f
override .\solver.h /^ virtual Matrix<double> solve(const Matrix<double>& M, const Matrix<double>& b) override;$/;" m class:IterativeSolver
prepare .\main.cpp /^std::pair<Matrix<double>, Matrix<double>> prepare(size_t index, size_t n) {$/;" f
residuum .\solver.h /^double residuum(const Matrix<T>& M, const Matrix<T>& b, const Matrix<T>& x)$/;" f
rows .\matrix.h /^inline size_t Matrix<T>::rows() const {$/;" f class:Matrix
solve .\solver.h /^Matrix<double> IterativeSolver::solve(const Matrix<double>& M, const Matrix<double>& b)$/;" f class:IterativeSolver
vvec .\matrix.h /^Matrix<T> Matrix<T>::vvec(std::initializer_list<T> values) {$/;" f class:Matrix