From 36b68d90c1e9476a26d83cf0eef90dfa863c606e Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Fri, 21 Jun 2013 20:35:40 +0200 Subject: [PATCH] std namespace cleaning --- src/generator.cpp | 9 ++++----- src/ios.cpp | 24 +++++++++++------------- src/polynomial.cpp | 7 ++++--- src/polynomial.h | 2 +- src/qd_utils.cpp | 9 +++++---- 5 files changed, 25 insertions(+), 26 deletions(-) diff --git a/src/generator.cpp b/src/generator.cpp index 364587b..5425ed7 100644 --- a/src/generator.cpp +++ b/src/generator.cpp @@ -21,8 +21,6 @@ #include #include -using namespace std; - static inline uint bytes (uint bits) { return (bits >> 3) + ( (bits & 7) ? 1 : 0); @@ -30,13 +28,14 @@ static inline uint bytes (uint bits) void arcfour_rng::seed (uint bits, bool quick) { - vector s; - ifstream f; + std::vector s; + std::ifstream f; uint b = bytes (bits); if (b > 256) b = 256; - f.open (quick ? "/dev/urandom" : "/dev/random", ios::in | ios::binary); + f.open (quick ? "/dev/urandom" : "/dev/random", + std::ios::in | std::ios::binary); s.resize (b); for (uint i = 0; i < b; ++i) f >> s[i]; f.close(); diff --git a/src/ios.cpp b/src/ios.cpp index 66fa0b7..79391c8 100644 --- a/src/ios.cpp +++ b/src/ios.cpp @@ -18,48 +18,46 @@ #include "ios.h" -using namespace std; - -ostream& operator<< (ostream&o, const polynomial& p) +std::ostream& operator<< (std::ostream&o, const polynomial& p) { o << "polynomial degree " << p.degree() << ": "; for (int i = 0, e = p.degree(); i <= e; ++i) o << p[i] << ' '; - o << endl; + o << std::endl; return o; } -ostream& operator<< (ostream&o, const permutation& p) +std::ostream& operator<< (std::ostream&o, const permutation& p) { o << "permutation over " << p.size() << " elements: "; for (uint i = 0; i < p.size(); ++i) o << p[i] << ' '; - o << endl; + o << std::endl; return o; } -ostream& operator<< (ostream&o, const gf2m& f) +std::ostream& operator<< (std::ostream&o, const gf2m& f) { - o << "GF(2^" << f.m << ") of " << f.n << " elements, modulus " << f.poly << endl; + o << "GF(2^" << f.m << ") of " << f.n << " elements, modulus " << f.poly << std::endl; return o; } -ostream& operator<< (ostream&o, const matrix& m) +std::ostream& operator<< (std::ostream&o, const matrix& m) { uint i, j, h, w; h = m.height(); w = m.width(); - o << "binary " << h << "x" << w << " matrix:" << endl; + o << "binary " << h << "x" << w << " matrix:" << std::endl; for (i = 0; i < h; ++i) { for (j = 0; j < w; ++j) o << m[j][i]; - o << endl; + o << std::endl; } return o; } -ostream& operator<< (ostream&o, const bvector& v) +std::ostream& operator<< (std::ostream&o, const bvector& v) { o << "vector of " << v.size() << " elements: "; for (uint i = 0, e = v.size(); i < e; ++i) o << v[i]; - o << endl; + o << std::endl; return o; } diff --git a/src/polynomial.cpp b/src/polynomial.cpp index 7ad47d1..dfb5063 100644 --- a/src/polynomial.cpp +++ b/src/polynomial.cpp @@ -157,12 +157,13 @@ void polynomial::generate_random_irreducible (uint s, gf2m&fld, prng& rng) item (rng.random (s) ) = rng.random (fld.n); } -bool polynomial::compute_square_root_matrix (vector&r, gf2m&fld) +bool polynomial::compute_square_root_matrix (std::vector&r, + gf2m&fld) { // step 1, generate a square matrix of squares mod poly. int d = degree(); if (d < 0) return false; - vectorl; + std::vectorl; l.resize (d); polynomial col, t; for (int i = 0; i < d; ++i) { @@ -275,7 +276,7 @@ void polynomial::square (gf2m&fld) mult (a, fld); } -void polynomial::sqrt (vector& sqInv, gf2m&fld) +void polynomial::sqrt (std::vector& sqInv, gf2m&fld) { polynomial a = *this; clear(); diff --git a/src/polynomial.h b/src/polynomial.h index 51fcb54..8471996 100644 --- a/src/polynomial.h +++ b/src/polynomial.h @@ -58,7 +58,7 @@ public: void inv (polynomial&, gf2m&); void make_monic (gf2m&); - void sqrt (vector&, gf2m&); + void sqrt (std::vector&, gf2m&); polynomial gcd (polynomial, gf2m&); void ext_euclid (polynomial&, polynomial&, polynomial&, gf2m&, int); diff --git a/src/qd_utils.cpp b/src/qd_utils.cpp index 672a2c2..43df826 100644 --- a/src/qd_utils.cpp +++ b/src/qd_utils.cpp @@ -19,7 +19,6 @@ #include "qd_utils.h" #include -using namespace std; /* * we count on that all integers are sufficiently large. @@ -27,7 +26,7 @@ using namespace std; * consisted only from {0,1}^n, and we don't usually have codes of this size. */ -static void fwht (vector x, vector&r) +static void fwht (std::vector x, std::vector&r) { int bs, s; s = x.size(); @@ -51,7 +50,9 @@ static void fwht (vector x, vector&r) * this multiple times. */ void fwht_dyadic_multiply (const bvector& a, const bvector& b, bvector& out, - vector&t, vector&A, vector&B) + std::vector&t, + std::vector&A, + std::vector&B) { uint i; @@ -109,7 +110,7 @@ bool qd_to_right_echelon_form (std::vector >&mat) bvector tmp; tmp.resize (bs); - vector c1, c2, c3; + std::vector c1, c2, c3; c1.resize (bs); c2.resize (bs); c3.resize (bs);