Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110755294
grid.cc
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Apr 27, 23:28
Size
748 B
Mime Type
text/x-c
Expires
Tue, Apr 29, 23:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25756051
Attached To
R7871 phys-743-exercises
grid.cc
View Options
/* -------------------------------------------------------------------------- */
#include "grid.hh"
/* -------------------------------------------------------------------------- */
#include <algorithm>
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
Grid::Grid(int m, int n) : m_m(m), m_n(n), m_storage(m * n) { clear(); }
/* -------------------------------------------------------------------------- */
void Grid::clear() { std::fill(m_storage.begin(), m_storage.end(), 0.); }
/* -------------------------------------------------------------------------- */
int Grid::m() const { return m_m; }
int Grid::n() const { return m_n; }
Event Timeline
Log In to Comment