-this stuff is kind of needed

This commit is contained in:
Patrice Matz 2017-12-09 21:27:22 +01:00
parent b06abf61de
commit 51e8f5cb0e
2 changed files with 24 additions and 0 deletions

14
SCE/SCE/OPTIMIZATION.cpp Normal file
View File

@ -0,0 +1,14 @@
#include "OPTIMIZATION.h"
OPTIMIZATION::OPTIMIZATION()
{
}
OPTIMIZATION::~OPTIMIZATION()
{
}
long double OPTIMIZATION::g_von_theta(long double x, long double y)
{
return -(x*x + y*y);
}

10
SCE/SCE/OPTIMIZATION.h Normal file
View File

@ -0,0 +1,10 @@
#pragma once
class OPTIMIZATION
{
public:
OPTIMIZATION();
~OPTIMIZATION();
long double g_von_theta(long double, long double);
};