summaryrefslogtreecommitdiff
path: root/a4/octave.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-08-01 15:24:27 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2023-08-01 15:24:27 +0200
commit3b535f0ecba834ba2b189e68b13316ec0d5f8fa6 (patch)
tree106ccb3772ce71eecdee577fe8b7c05a7f314dc9 /a4/octave.cc
parent6a8ae2de4261fecd0281685b9eea66bbd82bd7fb (diff)
A4: WIP
Diffstat (limited to 'a4/octave.cc')
-rw-r--r--a4/octave.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/a4/octave.cc b/a4/octave.cc
index e48fe6c..2d9a239 100644
--- a/a4/octave.cc
+++ b/a4/octave.cc
@@ -31,7 +31,7 @@ void Plot::add(const std::pair<double, double>& point)
void Plot::add(double y)
{
- if(y < 1000.0)
+ //if(y < 1000.0)
{
add({x, y});
}