1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
|
/*
* VolumeDB.cpp
*
* Created on: Jan 25, 2011
* Author: bedutra
*/
#include "VolumeDB.h"
#include <sstream>
#include <cassert>
#include <iostream>
VolumeDB::VolumeDB()
{
}
bool VolumeDB::canVolumeTestFinish(AlgorithemUsed alg, int dim, int vertex, bool useDual, int timeLimit)
{
stringstream sql;
vector<vector<string> > q; //query.
string algStr;
algStr = (alg == Lawrence ? "timeLawrence" : "timeTriangulate");
//is there a -2 time for this case?
if ( useDual == true)
{
sql << "select count(*) from volume as v"
<< " join polytope as dualP on dualP.rowid = v.polytopeID"
<< " join polytope as orgP on orgP.rowid = dualP.dual"
<< " where orgP.dim = " << dim
<< " and orgP.vertexCount <= " << vertex
<< " and v." << algStr << " = -2";
}
else
{
sql << "select count(*) from volume as v"
<< " join polytope as t on t.rowid = v.polytopeID"
<< " where t.dim = " << dim
<< " and t.vertexCount <= " << vertex
<< " and v." << algStr << " = -2"
<< " and t.dual is null";
}//not dual.
//cout << "check -2" << sql.str().c_str() << endl;
if (queryAsInteger(sql.str().c_str()))
return false; //
sql.str("");
//what is the average? Make sure we at least have 3 tests before we say the average is to large.
if ( useDual == true)
{
sql << "select avg(v." << algStr << "), count(*) from volume as v"
<< " join polytope as dualP on dualP.rowid = v.polytopeID"
<< " join polytope as orgP on orgP.rowid = dualP.dual"
<< " where orgP.dim = " << dim
<< " and orgP.vertexCount = " << vertex
<< " and v." << algStr << " >= 0";
}
else
{
sql << "select avg(v." << algStr << "), count(*) from volume as v"
<< " join polytope as t on t.rowid = v.polytopeID"
<< " where t.dim = " << dim
<< " and t.vertexCount = " << vertex
<< " and v." << algStr << " >= 0"
<< " and t.dual is null";
}//not dual.
//cout << "avg: " << sql.str().c_str() << endl;
q = query(sql.str().c_str());
if ( q[0][0] != "NULL" && atoi(q[0][0].c_str()) > timeLimit && atoi(q[0][1].c_str()) >= 3)
return false; //we have more than 3 tests and the avg. is larger than timeLimit.
return true;
}
vector<vector<string> > VolumeDB::getRowsToFindVolume(int dim, int vertex, bool useDual, int limit)
{
stringstream sql;
if ( useDual == true)
{
sql << "select dualP.latteFilePath, v.timeLawrence, v.timeTriangulate, v.theVolume, v.rowid"
<< " from volume as v"
<< " join polytope as dualP on dualP.rowid = v.polytopeID"
<< " join polytope as orgP on orgP.rowid = dualP.dual"
<< " where orgP.dim = " << dim
<< " and orgP.vertexCount = " << vertex
<< " limit " << limit;
}
else
{
sql << "select t.latteFilePath, v.timeLawrence, v.timeTriangulate, v.theVolume, v.rowid"
<< " from volume as v"
<< " join polytope as t on t.rowid = v.polytopeID"
<< " where t.dim = " << dim
<< " and t.dual is null"
<< " and t.vertexCount = " << vertex
<< " limit " << limit;
}//else not dual
//cout << "volumeDB::getRowsToFindVolume::" << sql.str() << endl;
return query(sql.str().c_str());
}// getRowsToFindVolume
/**
* Return rows in the form (latte file, time lawrence, time triangulate, volume, rowid)
*/
vector<vector<string> > VolumeDB::getRowsToFindVolumeGivenSpecficFile(const char *polymakeFile, bool useDual)
{
stringstream sql;
if ( useDual == true)
{
sql << "select dualP.latteFilePath, v.timeLawrence, v.timeTriangulate, v.theVolume, v.rowid"
<< " from volume as v"
<< " join polytope as dualP on dualP.rowid = v.polytopeID"
<< " join polytope as orgP on orgP.rowid = dualP.dual"
<< " where orgP.polymakeFilePath = '" << polymakeFile << "'";
}
else
{
sql << "select t.latteFilePath, v.timeLawrence, v.timeTriangulate, v.theVolume, v.rowid"
<< " from volume as v"
<< " join polytope as t on t.rowid = v.polytopeID"
<< " where t.polymakeFilePath = '" << polymakeFile << "'";
}
//cout << "getRowsToFindVolumeGivenSpecficFile:: " << sql.str().c_str() << endl;
return query(sql.str().c_str());
}//getRowsVolumeGivenSpecficFile
/**
* Returns a table of volume statistics. Rows are dim, column is additional points.
*
* I define additional points as the number of additional points added to make a non-simplex.
* So, additional points = vertexCount - dim -1. (dim+1 = a simplex).
* TODO: add a text picture.
*/
vector<vector<ValuationDBStatistics> > VolumeDB::getStatistics(bool useDual)
{
stringstream sql;
vector<vector<string> > dimList, pointList;
vector<vector<ValuationDBStatistics> > ans;
//first, get a list of dim and "additional point" lists.
sql << "select distinct dim from polytope order by dim asc";
dimList = query(sql.str().c_str());
sql.str("");
sql << "select distinct (vertexCount - dim -1) as addPoint from polytope where dual is null order by addPoint asc";
pointList = query(sql.str().c_str());
cerr << "getStatistics:: filling " << dimList.size() << " by " << pointList.size() << "table\n";
ans.resize(dimList.size());
//now loop over each dim-point pair
for(int i = 0; i < dimList.size(); ++i)
{
ans[i].resize(pointList.size());
for(int j = 0; j < pointList.size(); ++j)
{
cerr << "row col = " << i << ", " << j << "\n";
ans[i][j] = getStatisticsByDimAndPointCount(atoi(dimList[i][0].c_str()), atoi(pointList[j][0].c_str()), useDual);
}
}
return ans;
}//getStatistics
ValuationDBStatistics VolumeDB::getStatisticsByDimAndPointCount(int dim, int additionalPoints, bool useDual)
{
int vertexCount = dim + 1 + additionalPoints;
ValuationDBStatistics vdbs;
vector<double> lawrenceData, triangulateData;
string sqlLawrence, sqlTriang;
//save how this function was called.
vdbs.dim = dim;
vdbs.vertexCount = vertexCount;\
vdbs.degree = 0;
vdbs.useDual = useDual;
//build the sql statements.
for(int i = 0; i < 2; ++i)
{
stringstream sql;
string strAlg;
if ( i == 0)
strAlg = "timeLawrence";
else
strAlg = "timeTriangulate";
if (useDual == true)
{
sql << "select v." << strAlg
<< " from volume as v"
<< " join polytope as dualP on v.polytopeID = dualP.rowid"
<< " join polytope as orgP on orgP.rowid = dualP.dual"
<< " where dualP.dual is not null"
<< " and orgP.dim = " << dim
<< " and orgP.vertexCount = " << vertexCount
<< " ;";
}//if dual
else
{
sql << "select v." << strAlg
<< " from volume as v"
<< " join polytope as t on v.polytopeID = t.rowid"
<< " where t.dual is null"
<< " and t.dim = " << dim
<< " and t.vertexCount = " << vertexCount
<< " ;";
}//regular
if ( i == 0)
sqlLawrence = sql.str();
else
sqlTriang = sql.str();
}//for i.
//get the time data only. (note that a time in never stored as NULL. So zero times really mean "super fast"
lawrenceData = queryAsFloatArray(sqlLawrence.c_str());
triangulateData = queryAsFloatArray(sqlTriang.c_str());
double avg, min, max, sd;
int totalExist, totalFinished;
bool manuallyLimited;
getStatistics(lawrenceData, avg, min, max, sd, totalFinished, totalExist, manuallyLimited);
vdbs.avgLawrenceTime = avg;
vdbs.minLawrenceTime = min;
vdbs.maxLawrenceTime = max;
vdbs.stdDeviationLawrence = sd;
vdbs.totalFinishedLawrenceTestCases = totalFinished;
vdbs.totalTestCases = totalExist;
vdbs.manuallyLimitedLawrence = manuallyLimited;
getStatistics(triangulateData, avg, min, max, sd, totalFinished, totalExist, manuallyLimited);
vdbs.avgTriangulationTime = avg;
vdbs.minTriangulationTime = min;
vdbs.maxTriangulationTime = max;
vdbs.stdDeviationTriangulation = sd;
vdbs.totalFinishedTriangulationTestCases = totalFinished;
assert(vdbs.totalTestCases == totalExist);
vdbs.manuallyLimitedTriangulation = manuallyLimited;
return vdbs;
/*
ValuationDBStatistics vdbs;
vector<double> avgMinMaxCountLawrence, avgMinMaxCountTriangulate;
int vertexCount = dim + 1 + additionalPoints;
//save how this function was called.
vdbs.dim = dim;
vdbs.vertexCount = dim + 1 + additionalPoints;
vdbs.degree = 0;
vdbs.useDual = useDual;
//get avg, min, man, and number finished
avgMinMaxCountLawrence = getStatisticsAvgMinMaxCount(Lawrence, dim, vertexCount, useDual);
avgMinMaxCountTriangulate = getStatisticsAvgMinMaxCount(Triangulate, dim, vertexCount, useDual);
vdbs.avgTriangulationTime = avgMinMaxCountTriangulate[0];
vdbs.avgLawrenceTime = avgMinMaxCountLawrence[0];
vdbs.minTriangulationTime = avgMinMaxCountTriangulate[1];
vdbs.minLawrenceTime = avgMinMaxCountLawrence[1];
vdbs.maxTriangulationTime = avgMinMaxCountTriangulate[2];
vdbs.maxLawrenceTime = avgMinMaxCountLawrence[2];
vdbs.totalFinishedTriangulationTestCases = avgMinMaxCountTriangulate[3];
vdbs.totalFinishedLawrenceTestCases = avgMinMaxCountLawrence[3];
vdbs.totalTestCases = getNumberVolumeTest(dim, vertexCount, useDual);
vdbs.manuallyLimitedLawrence = getLimit(Lawrence, dim, vertexCount, useDual);
vdbs.manuallyLimitedTriangulation = getLimit(Triangulate, dim, vertexCount, useDual);
return vdbs;
*/
}//ValuationDBStatistics getStatisticsByDimAndPointCount(int dim, int additionalPoints, bool useDual);
void VolumeDB::getStatistics(const vector<double> &data, double &avg, double &min, double &max, double &sd, int &totalFinished, int &totalExist, bool &manuallyLimited)
{
//set initial values.
avg = 0.0;
sd = 0.0;
totalFinished = 0;
totalExist = 0;
manuallyLimited = false;
//set the initial min/max to a non-neg number.
bool foundNonNeg = false;
for(int i = 0; i < data.size() && !foundNonNeg ; ++i)
{
if (data[i] >= 0)
{
min = data[i];
max = data[i];
foundNonNeg = true;
}
}
if ( foundNonNeg == false)
{
//so every number is -1 or -2. That is, not one integration test finished.
max = 0;
min = 0;
//the next for loop will not change min to -1 or -2.
}
totalExist = (int) data.size();
//we can compute everything but the standard deviation in one pass of the array.
for(int i = 0; i < data.size(); ++i)
{
if (data[i] <= -2)
manuallyLimited = true;
if (data[i] < 0)
continue;
//so data[i] >= 0
++totalFinished;
if (min > data[i])
min = data[i];
if ( max < data[i])
max = data[i];
avg += data[i];
}//for i
if (totalFinished != 0)
{
avg /= totalFinished; //otherwise, avg is still zero.
//now find the standard deviation.
for(int i = 0; i < data.size(); ++i)
{
if (data[i] < 0)
continue;
sd += pow(data[i] - avg, 2);
}//for i
sd /= totalFinished;
sd = sqrt(sd);
}//if totalFinished != 0
}//getStatistics
void VolumeDB::updateVolumeTimeAndValue(AlgorithemUsed alg, double time, RationalNTL theComputedVolume, string previousValueStr, string rowid)
{
stringstream sql;
sql << "update volume set ";
if ( alg == Lawrence)
sql << " timeLawrence = " << time;
else //Triangulate};
sql << " timeTriangulate = " << time;
if ( previousValueStr == "NA")
{
sql << " , theVolume = ' " << theComputedVolume << "' ";
}
else
{
RationalNTL previousValue(previousValueStr);
if ( previousValue != theComputedVolume)
{
throw SqliteDBexception(string("updateVolumeTimeAndValue::The volumes differ")
+"\n\tpreviousValue: " + previousValueStr
+"\n\tcomputedValue: " + theComputedVolume.str()
+"\n\tcurrent sql stm:" + sql.str()
+"\n\trowid: " + rowid);
}
}
sql << " , flagValue = '" << -1 << "', flagType = '" << LAWRENCE_VOLUME_VERSION << "'";
sql << " where rowid = " << rowid << endl;
//cout << sql.str().c_str() << endl;
query(sql.str().c_str());
}//updateVolumeTimeAndValue
int VolumeDB::volumeTestsCompleted(AlgorithemUsed alg, int dim, int vertex, bool useDual)
{
stringstream sql;
if (useDual == true)
{
sql << "select count(*) from volume as v"
<< " join polytope as dualP on v.polytopeID = dualP.rowid"
<< " join polytope as orgP on orgP.rowid = dualP.dual"
<< " where orgP.dim = " << dim
<< " and orgP.vertexCount = " << vertex
<< " and v." << (alg == Lawrence ? "timeLawrence" : "timeTriangulate") << " >= 0";
}
else
{
sql << "select count(*) from volume as v join polytope as t on v.polytopeID = t.rowid"
<< " where t.dim = " << dim
<< " and t.vertexCount = " << vertex
<< " and v." << (alg == Lawrence ? "timeLawrence" : "timeTriangulate") << " >= 0"
<< " and t.dual is null";
}
return queryAsInteger(sql.str().c_str());
}
|