/*
* File: main.cpp
* Author: Pantelis Sopasakis
*
* Created on July 7, 2015, 7:47 PM
*
* ForBES is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ForBES is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with ForBES. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <math.h>
#include <cmath>
#include <stdio.h>
#include <iostream>
#include <set>
#include <vector>
#include <list>
#include <map>
#include <time.h>
#include "ForBES.h"
#include "CGSolver.h"
#include "LeastSquares.h"
#include "IndProbSimplex.h"
using namespace std;
#define N 3
void f11();
void f11() {
Matrix::destroy_handle();
std::cout << "bye!";
}
int main(int argc, char** argv) {
Matrix *x = new Matrix(10, 2);
Matrix y = *x;
y[0] = 100.0;
Matrix z(y);
Matrix z2 = z;
z2.set(0, 0, 14.53);
class X {<--- The class 'X' does not have a constructor. [+]The class 'X' does not have a constructor although it has private member variables. Member variables of builtin types are left uninitialized when the class is instantiated. That may cause bugs or undefined behavior.
private:
double a;
};
delete x;
return EXIT_SUCCESS;
}