Skip to content
Snippets Groups Projects
Commit a1f06edb authored by Andrew E. Torda's avatar Andrew E. Torda
Browse files

Makefile cleans up leftovers from testing in ackley.

parent 70057826
No related branches found
No related tags found
No related merge requests found
...@@ -40,3 +40,5 @@ clean: ...@@ -40,3 +40,5 @@ clean:
rm -rf /tmp/go.*.mod rm -rf /tmp/go.*.mod
rm -rf /tmp/go.*.sum rm -rf /tmp/go.*.sum
rm -rf ./examples/*.csv rm -rf ./examples/*.csv
rm -rf ./ackley/*delme*
rm -rf ./ackley/*jpg
...@@ -65,7 +65,7 @@ func TestAckley1d(t *testing.T) { ...@@ -65,7 +65,7 @@ func TestAckley1d(t *testing.T) {
set term "jpeg" set term "jpeg"
set output "test1d.jpg" set output "test1d.jpg"
plot 'test1d.dat' us 2:1 with line` plot 'test1d_delme.dat' us 2:1 with line`
const fOutName = "test1d_delme.dat" const fOutName = "test1d_delme.dat"
const plotNoteName = "plot1d_delme.gplt" const plotNoteName = "plot1d_delme.gplt"
grid := grdsz{-10, 10, 500} grid := grdsz{-10, 10, 500}
...@@ -99,7 +99,7 @@ func TestAckley2d(t *testing.T) { ...@@ -99,7 +99,7 @@ func TestAckley2d(t *testing.T) {
set term "jpeg" set term "jpeg"
set output "test2d.jpg" set output "test2d.jpg"
splot 'test2d.dat' us 2:3:1 with points` splot 'test2d_delme.dat' us 2:3:1 with points`
const fOutName = "test2d_delme.dat" const fOutName = "test2d_delme.dat"
const plotNoteName = "plot2d_delme.gplt" const plotNoteName = "plot2d_delme.gplt"
grid := grdsz{-5, 5, 40} grid := grdsz{-5, 5, 40}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment