Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

GeomScale

Open-source development of scalable algorithms for geometric statistics
Collective - Host: opensource - https://opencollective.com/geomscale - Website: https://geomscale.github.io - Code: https://github.com/geomscale

remove utilities.R and create a script file per R function. Update the documentation with description and table of contents.

github.com/GeomScale/volesti - 7c9a20afb6153672c90fe2c52911b34d3b5cd875 authored about 6 years ago by tolischal <[email protected]>
fix a bug in the construction of the matrix that contains the vertices of the V-polytope in R interface.

github.com/GeomScale/volesti - 566cb6e7b18697eb04ad01291ef515167226ebaf authored about 6 years ago by tolischal <[email protected]>
use template number type NT in var_g structure and in samplers.h replace Point::FT with NT in the functions we used until now.

github.com/GeomScale/volesti - d382e9d891e8d1a14fd3aa4e63f9c4859a201584 authored about 6 years ago by tolischal <[email protected]>
delete excecutables and CMAKEFILES from the test folder.

github.com/GeomScale/volesti - b2e8e8c2889779ed68fb0a2ece250f45a30d7d4d authored about 6 years ago by tolischal <[email protected]>
Add option in R interface: give a rowwise matrix that contains the vertices of a V-polytope as an input. Remove variable telescopic product from volesti and set initial volume equl to the volume of the chebychev ball to avoid overflow in some cases (in each iteration we multiply vol with the current ratio).

github.com/GeomScale/volesti - 2e3aafa490f6fcfdbdb5889ee8eeb7c85634b262 authored about 6 years ago by tolischal <[email protected]>
add to R interface the choice of giving as input a V-polytope. You have to give the path to the ext file and a flag Vpoly=TRUE.

github.com/GeomScale/volesti - 5413dbb02339ecf55e483e4f501b0db485c73d8f authored about 6 years ago by tolischal <[email protected]>
Add comments in polytopes.h and in solve_lp.h. We add a check at the end of solve_LP() function that computes the chebychev center of a H-polytope. We add some comments in samplers.h and use NT number type where it is not able to use a tamplate.

github.com/GeomScale/volesti - 142a51f7dc1057c274257256ec488cf8c685f54d authored about 6 years ago by Tolis <[email protected]>
Add two test: 1) volesti volume test with float and 2) CV volume test with long double.

github.com/GeomScale/volesti - 92e55f0027d39cf6e46fc64726f55a4b88baae16 authored about 6 years ago by Tolis <[email protected]>
Add folder number_types with 3 header files for double, float and long double. In main file we have to incluse the disearable header file. Fix some bugs for the template number types in vol.cpp and in struct var_g in volume.h. We define const boolean using_float because we use it in get_first_gaussian() function, to guarantee convergence: If float is used we set tol=1e-06 otherwise we set it 1e-07.

github.com/GeomScale/volesti - 2256ed4f11e29671a7663c52b4c142ae356d43c1 authored about 6 years ago by Tolis <[email protected]>
We add seters and geters for matrix and vec coeffs in both H and V polytope classes. We remove Init(int d) and constructor with argument int d in V polytope. We create upper_bound_of_hyperplanes in V polytope class. We change input and output number type to NT in factorial function, because of overflow.

github.com/GeomScale/volesti - f8f40e344e928f556a9d900bb0779476422b1889 authored about 6 years ago by Tolis <[email protected]>
add function get_points_for_rounding() in both H and V Polytopes. H polytope returns false and V polytope returns its vertices if num_of_vertices<20*dimension. We modified rotating() function to use linear_transformIt() polytope's function, now we can rotate a V polytope as well.

github.com/GeomScale/volesti - 1fedc5bdb55990526fcb4239ca8b6ac41bcc55a5 authored about 6 years ago by Tolis <[email protected]>
add get_dists function in both H and V polytopes. In H polytope it returns the distances between the chebychev center and the facets. In Vpolytope it computes an upper bound for the number of facets (number of d-1-faces of the cyclic polytope) and for each facet returns the radius of the chebychev ball as lower bound for the distance, so we can compute an upper bound for the a_0 of the first gaussian. CV algo can now be used for the volume approximation of v polytopes.We add boolean deltaset to var_g to be able to set the radius of the ball walk when the a_i changes (that was a bug that is fixed).

github.com/GeomScale/volesti - 02031d09aaa5bfe782285a951fdc75f8390bc44b authored about 6 years ago by Tolis <[email protected]>
create function shift() for both H and V polytopes, to shift the polytope by a point c. Create function linear_transformIt() for both H and V polytopes, to apply a linear transformation to the polytope. We use these functions to the main rounding functionin order to use the latter for Vpolytopes as well. We replace all the shiftings in CV algorithm with the function shift().

github.com/GeomScale/volesti - 728ba5489736914cb6c1f619170e487fdde77de4 authored about 6 years ago by Tolis <[email protected]>
merge schedule annealing into v_polytopes branch. Replace stdMatrix with eigen matrix in Vpolytope class. Use template number type in VPolytope class.

github.com/GeomScale/volesti - ded6f201324c068c524938b91de658055dcebdd4 authored about 6 years ago by tolischal <[email protected]>
add some comments and remove unused variables from vol.cpp

github.com/GeomScale/volesti - e39fe24d6d9fe62fc4169e29bff658d248c6f5e2 authored about 6 years ago by tolischal <[email protected]>
add some comments in gaussin_samlrs.h and in gaussian_annealing.h. We set error=0.2 and number of experiments=20 in the CV volume test. We passed the test succesfully locally.

github.com/GeomScale/volesti - 33fc6528f3e0de44ddcba53753bfeb388b7c45cb authored about 6 years ago by tolischal <[email protected]>
Add comments in functions that they had not any. Create gaussian_first_coord_point() to compute first gaussian point, overriding is not needed.

github.com/GeomScale/volesti - f64fa3675c1230e9ed4b68cfc0cc679210b5ffb9 authored about 6 years ago by Tolis <[email protected]>
fix some mistakes in readme file

github.com/GeomScale/volesti - 1cdd85d6a4c47c35d050a2a56a97e7a19d9246b1 authored about 6 years ago by tolischal <[email protected]>
Update readme file to explain how you can run CV algo. Create a test for CV algo in volumeCV_test.cpp. We have passed succesfully the test locally

github.com/GeomScale/volesti - ce240dcafb60cd9feff9e3f9f223b9dc5e7ce295 authored about 6 years ago by tolischal <[email protected]>
update R package documentation in rder to explain the new parameters for the CV algo. The new pdf is in doc folder.

github.com/GeomScale/volesti - 94d1aea175516a4671ab2ec0c6f4e36d9409f644 authored about 6 years ago by tolischal <[email protected]>
change to void all the non returning functions in the implementation. Add to Rcpp interface the choice to run CV algo.

github.com/GeomScale/volesti - a2cf6c8a96830136bc2309daa95152e8f8a5c758 authored about 6 years ago by tolischal <[email protected]>
We use std min_element and max_element iterators for the min and max positions and values of the window W.

github.com/GeomScale/volesti - 7296fc51bfe0314329900bc1dd4d5698e4addd6d authored about 6 years ago by tolischal <[email protected]>
Make changes in arguments of get_first_gaussian() and get_next_gaussian(), we have moved the output arguments at the end of the argument list. We change all not returning functions to void in gaussian_annealing.h and in gaussian_samplers.h. We add comments for the variable k in get_next_gaussian and iterators for the fn vector. We have renamed its to iterators. We change rand_exp_range_coord() to return a double.

github.com/GeomScale/volesti - 8bd0b0d807f43713bf34ba43a38dcfcec7aaf2c2 authored about 6 years ago by tolischal <[email protected]>
Implement Welford's algorithm for mean and variance. Use constants for max nuber of iterations and tolerance in gaussian_samplers.h and gaussian_annealing.h header files.

github.com/GeomScale/volesti - 5a26917ee419ac5c54479e7668127000568b7d00 authored about 6 years ago by tolischal <[email protected]>
compute radius of gaussian ball walk before the sampler's call. Remove class point_on_Dsphere. We move functions point_in_Dsphere, point_on_Dsphere from gaussian_samplers.h to samplers.h and implement function get_direction() to avoid duplicated code. We use these functions for RDHR and Gausian Ball Walk and first random point in convex polytope.

github.com/GeomScale/volesti - 00ff4a929b6b4a93f7ddf4290ff5d5d458821eb0 authored about 6 years ago by tolischal <[email protected]>
move computation of the first coordinate point outside the loops of the ratios in gaussian_annealing_volume. Use const bool for the computation of the first coord point.

github.com/GeomScale/volesti - 2abf7da996b2a0a4631edb533fe2599b299d7745 authored about 6 years ago by Tolis <[email protected]>
merge develop into schedule_annealing. Override gaussian_next_point() in order to sample the first point for the coordinate directions HnR. Make adjustments in get_annealing_schedule() and in volume_gaussian_annealing() for the first point coordinate case.

github.com/GeomScale/volesti - 34e54961fc97ce8d1728eac19352318d49a52122 authored about 6 years ago by Tolis <[email protected]>
Merge pull request #6 from TolisChal/use_eigen_matrix

Use eigen matrix for the H-polytope representation. Able to use float or long double.

github.com/GeomScale/volesti - 6c3001e24ac837b27c37e229acfc78eb59e6dff3 authored about 6 years ago by Tolis Chalkis <[email protected]>
Make adjustments in vol_R.cpp in order to use NT number type as it is declared in volume.h. Now we can use float or long double in Rcpp interface as well.

github.com/GeomScale/volesti - 63807344a4d1a65958c6330f568c631c38e86c5e authored about 6 years ago by tolischal <[email protected]>
Use double for the nikolic minimum enclosing ellipsoid implementation irrespective of the number type we use for the implementaion. We can use float or long double. We made adjustments in tests cpp files in order to use the template number type. We pass all the tests for both double and float.

github.com/GeomScale/volesti - 1e3ef48dedbb21d0c54b7c70ee70d22a391d4033 authored about 6 years ago by tolischal <[email protected]>
Use template number type in BallIntersevtPolytope class and NT number type in volume.h header file and in vol.cpp file. We have to use template number type in nikolic implementation in order to use different number type than double. Pass all the test locally.

github.com/GeomScale/volesti - 308cdc60c12d4ed44831d5e1ff1b1172a397e614 authored about 6 years ago by tolischal <[email protected]>
Override line_intersect_coord() function in polytope class in order to compute the first point of the CDHR and not to test in every step if this is the first point. We initialize min_plus to max double value and max_min to min double value to avoid checking in every iteration if they are seted for the first time. We add comments in Polytope class and we remove useles comments from samplers.h header file.

github.com/GeomScale/volesti - 82cd96ecb0211dabeb38e3edb03ba7fa405f584c authored about 6 years ago by tolischal <[email protected]>
use template number type everywhere in H-polytope class. All tests passed locally.

github.com/GeomScale/volesti - 54d7d75c5753dd32832cd94144260821416c5636 authored about 6 years ago by tolischal <[email protected]>
add template parameters in every function. Use iterators in volume.h and in gaussian_annealing.h. Compute total steps only in verbose mode.

github.com/GeomScale/volesti - 145564885c119ad0e94c27694bf3fc6422814b9c authored about 6 years ago by tolischal <[email protected]>
Merge branch 'develop' into schedule_annealing

github.com/GeomScale/volesti - 62bd4e8adcdb40df7adcf1f51380818640c76fb6 authored about 6 years ago by tolischal <[email protected]>
Merge branch 'develop' into v_polytopes

github.com/GeomScale/volesti - be755a0b6ec8d233cb1c2e3a4c74c45f4b2b7ef9 authored about 6 years ago by tolischal <[email protected]>
merge develop into use_eigen_matrix to get the adjustments from Rcpp interface

github.com/GeomScale/volesti - 81624b942d004719e18b81375572d681026ebc57 authored about 6 years ago by tolischal <[email protected]>
use chebyshev_center() function in Rcpp interface. Chenge NAMESPACE file to the Rcpp::skeleton NAMESPACE default.

github.com/GeomScale/volesti - 5be598e246dc8734032742eaae7509dc561974ca authored about 6 years ago by tolischal <[email protected]>
remove stdMatrix and stdCoeffs from the implementation. Now only eigen matrices and vectors are used everwhere in the implementation. We have to change reff() function (add it to todo list).

github.com/GeomScale/volesti - 0beb1e44820c2430ce266f7abda047638d61c942 authored about 6 years ago by tolischal <[email protected]>
chenge hit and run implementations in order to use eigen matrices. We add seters and geters for the eigen matrices and use them in rounding function

github.com/GeomScale/volesti - bbcb8175292d5b88628ef79047c69e02f3299762 authored about 6 years ago by Tolis <[email protected]>
use eigen matrices for the rounding

github.com/GeomScale/volesti - 401fea0520c1242605c08f58f8248702de8b28c5 authored about 6 years ago by Tolis <[email protected]>
use eigen matrix for the chebychev ball

github.com/GeomScale/volesti - 3e9fa53427cdcbca3826d636e4130f62cf6226d2 authored about 6 years ago by Tolis <[email protected]>
merge develop into v_polytopes and fix conflicts

github.com/GeomScale/volesti - 38010883db5c309b405b5e4b6b69cc89189ce5ce authored about 6 years ago by Tolis <[email protected]>
merge develop into schedule_annealing and use chebyshev_center() function in CV algo as well

github.com/GeomScale/volesti - ddfd9b07bc24a2f2867814e3c065134f0bf6b3fb authored about 6 years ago by Tolis <[email protected]>
Merge branch 'develop' into schedule_annealing

github.com/GeomScale/volesti - e0208eecd7517dfb4e89bef656c711cfb91d4c2d authored about 6 years ago by Tolis <[email protected]>
change chebyshev_center() function in polytope class. Now we have to call this function to compute the chebychev ball and this function calls the interface of lpSolve to compute the ball.

github.com/GeomScale/volesti - d7f74fbfbe7c8298545266c6a7e92993d8e94f41 authored about 6 years ago by Tolis <[email protected]>
Merge remote-tracking branch 'volume_approximation/gsoc18' into develop

github.com/GeomScale/volesti - f80f11ee985481e45b6f72c15d3bdb224a9f283c authored about 6 years ago by Tolis <[email protected]>
remove useless comments from the code

github.com/GeomScale/volesti - f16db5e3527ad528d44bb9bee6f2315fe134ee72 authored about 6 years ago by Tolis <[email protected]>
create a function in solve_lp.h header file that solves the LPs for the hit and run. In Vpolytope class we define function intersect_line() and intersect_line_coord(). For the chebychev ball of the Vpoly we add a check: We check if the selected simplex is full dimensional or not (we compute the rank of the matrix).

github.com/GeomScale/volesti - 705efe680b833cdb13932d80536712660653ae87 authored about 6 years ago by Tolis <[email protected]>
fix the bug for the random selection of d+1 vertices for the chebychev ball in Vpolytope

github.com/GeomScale/volesti - ad0fd1bd190de7426a0f763cfcf7d4dd28e58cfe authored about 6 years ago by Tolis <[email protected]>
Fixing licence details

github.com/GeomScale/volesti - 1b13775b5c21c2e2c0b80b0df1e864fc20d36472 authored about 6 years ago by Vissarion Fisikopoulos <[email protected]>
Merge branch 'develop' into schedule_annealing

github.com/GeomScale/volesti - 21bbf4792922815ebe1cd9f7e5588bca461dfc23 authored about 6 years ago by Tolis <[email protected]>
create a Vpolytope class. We use the proposal work. We create chebyshev_ball() functions for booth H and V polytopes, ball_walk, new function for a random point in d sphere. We change the structure var to give boolean ball_walk, radius for ball_walk and chebychev center.

github.com/GeomScale/volesti - 2f0c38adde2e84fdccfeb7c1b31d615b7bcb8516 authored about 6 years ago by Tolis <[email protected]>
merge cgal_remove branch after PR completed and fix conflicts in rounding.j, makevars, rounding_test.cpp, chebychev_test.cpp, cmakeLists.txt files

github.com/GeomScale/volesti - 1b284e654d071fa43f450a70cb207a7b59626ed3 authored about 6 years ago by tolischal <[email protected]>
Merge pull request #2 from TolisChal/cgal_remove

Rcpp package for VolEsti without CGAL dependencies.

github.com/GeomScale/volesti - 9a31d85453481d38e4d270d4b1a9b42c32f6de5a authored about 6 years ago by Tolis Chalkis <[email protected]>
remove some useless comments in vol_R.cpp and change the inputs of rouning_min_ellips() for the chebychev ball

github.com/GeomScale/volesti - 343ef50504dacfaf2388ffe1dd260e50aceee340 authored over 6 years ago by tolischal <[email protected]>
fix a bug in rounding test and allow more iterations

github.com/GeomScale/volesti - f5ff03152708823db53ed8039f57e7b10d7dbe07 authored over 6 years ago by tolischal <[email protected]>
update the pdf for the documentation. Add flag -DBOOST_NO_AUTO_PTR both in makevars and cmakelists.txt. Change the solveLP inputs, now it takes only the polytope and computes the chebychev ball. Fix the bug in readme for the command is used for the documentation.

github.com/GeomScale/volesti - a875e897bce8e4345c7e225fe0698c2ed2d04bac authored over 6 years ago by tolischal <[email protected]>
improve rounding test for skinny cubes. Round until ratio r/R drops or max_iters=10

github.com/GeomScale/volesti - d3178c62c29e07c0ee747599b152a20553b15d8f authored over 6 years ago by tolischal <[email protected]>
add a pdf documentation and instructions in readme how to create it locally. We improve rounding test with skinny_cubes and rotated_skinny_cubes [needs more improvment] and improve the chebychev test. Remove the rotation test

github.com/GeomScale/volesti - d265bae6ba7b12234f898eecad9c01474c08505d authored over 6 years ago by tolischal <[email protected]>
change round test, adding volume test for skinny cubes and rotated skinny cubes. Fix the warnings for the Rd files from devtools::check().

github.com/GeomScale/volesti - 1280527f8651ce18ceee1434c85b3d810a41ebee authored over 6 years ago by tolischal <[email protected]>
add @param description in line 152 in utilities.R file in order to fix the warning from roxygen2 and to add description for the input parameter (list)

github.com/GeomScale/volesti - 4d18004eea1de323ab9782e81877c3cd7f1d6b75 authored over 6 years ago by tolischal <[email protected]>
add all the cpp files for the tests from cgal_remove branch

github.com/GeomScale/volesti - 8b3aed4e1c1b8bfb387a4590ba8bd917c607d837 authored over 6 years ago by tolischal <[email protected]>
add std::isinf() and std::isnan() functions in tests cpp files.

github.com/GeomScale/volesti - b366c9535de8815a29834ae8968d1cdaf8831f90 authored over 6 years ago by tolischal <[email protected]>
add tests for rotated skinny cubes. Create a cpp file in test folder.

github.com/GeomScale/volesti - 279e617bf5347a79b94ac64cb770ab36490c4c05 authored over 6 years ago by tolischal <[email protected]>
create tests for the computation of chebychev ball and the rounding. We create two cpp files, one for each test, in test folder and we modify the cmakelists.txt

github.com/GeomScale/volesti - bc0a29712adc214b75f6e67160cf6889c238019a authored over 6 years ago by tolischal <[email protected]>
merge cgal_remove and fix conflicts

github.com/GeomScale/volesti - a139f0108bac8b9cc13cd5905631ea9d51a8dad9 authored over 6 years ago by Tolis <[email protected]>
fix mistakes from merging with schedule_annealing.

github.com/GeomScale/volesti - c6a6ea55bd9a0f869eb5ceb2520336de11167200 authored over 6 years ago by Tolis <[email protected]>
add boost files that are missing

github.com/GeomScale/volesti - b985f145e3800e8dc29c8d707b723b1f593363ce authored over 6 years ago by Tolis <[email protected]>
Write comments in roxygen style for the R functions and compile them in order to create .Rd files for the documentation

github.com/GeomScale/volesti - 4227622b03e515f20e65dc4fd1160ed282efcf9d authored over 6 years ago by Tolis <[email protected]>
add tests for chebychev and comment out it because build with circleci fails. Needs debugging.

github.com/GeomScale/volesti - 9caae705c9b70f3ce8c550814efca5b39473d80c authored over 6 years ago by tolischal <[email protected]>
add description for the CV algo in vol.cpp file when the user asks for help giving the -h or --help flag.

github.com/GeomScale/volesti - 94467060a93c3abc4cd4dc14c1e5a30a98e1c9d1 authored over 6 years ago by tolischal <[email protected]>
Complete the parametrization of CV algo. The CV volume function takes as input the new structure. New flags are seted in order to give the CV input.

github.com/GeomScale/volesti - 570aa68a3f84e9c9fb9af45d1030d9f8283a3a02 authored over 6 years ago by tolischal <[email protected]>
create a structure vars_g in volume.h header file for the gaussian annealing inputs.

github.com/GeomScale/volesti - 824a5d0bef5ce1f8d2e9df42641713a4e565d46d authored over 6 years ago by tolischal <[email protected]>
add gaussian ball walk for sampling

github.com/GeomScale/volesti - 680252019029c172ae299cc1638e1cd8e98d3266 authored over 6 years ago by tolischal <[email protected]>
Merge branch 'cgal_remove' into schedule_annealing

github.com/GeomScale/volesti - 13435ed040f9ee39d6f01f986e76525c435156f0 authored over 6 years ago by tolischal <[email protected]>
Remove math format from README

github.com/GeomScale/volesti - d1e1e491dfed8d56f25cd84f87cb4f704653d3b8 authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>
Math style changes in README

github.com/GeomScale/volesti - d2bca2826262e5f347cdb4b03b3b51693640551c authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>
Minor style changes in README

github.com/GeomScale/volesti - 461e40cba606e52a6f73e1f598baf4ba16998970 authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>
Change info and style in Readme

github.com/GeomScale/volesti - 9c45ca0a1aa2e3622472a39783dcf6e0654e7c16 authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>
Add circleci badge

github.com/GeomScale/volesti - def0b167bfa85e5b5d76e4a7cf988887f5d39c46 authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>
Merge branch 'cgal_remove' into schedule_annealing

github.com/GeomScale/volesti - e835eda8dd93550937ac0f2f8bc0f63aec7d7da6 authored over 6 years ago by tolischal <[email protected]>
Delete .Rbuildignore file

github.com/GeomScale/volesti - 152f5c8584350c0debdc441b39330a1e819bc379 authored over 6 years ago by Tolis Chalkis <[email protected]>
delete .gitignore file

github.com/GeomScale/volesti - 40ea7870f439926f519bfb2d95557e761a914e24 authored over 6 years ago by Tolis Chalkis <[email protected]>
add boost files in external. Now it is able to be compiled without pre-install boost library in your system

github.com/GeomScale/volesti - 9c79558b98c13ddfdf42fec2f1f1eb961b5d7e06 authored over 6 years ago by tolischal <[email protected]>
Create and enable tests verbose mode

github.com/GeomScale/volesti - 75a5aef37b2b629d2a3b03e3c13f869b9cc2fafc authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>
add lines at the end

github.com/GeomScale/volesti - b3eed143c5ff7c9a4466ac044cd65dd0a9b34359 authored over 6 years ago by tolischal <[email protected]>
resolving conflicts

github.com/GeomScale/volesti - 9ce43845e11387471322c925734af8125eb2e89c authored over 6 years ago by tolischal <[email protected]>
resolving conflicts

github.com/GeomScale/volesti - 6350c4325c262a23677827ee650159362512f1ec authored over 6 years ago by tolischal <[email protected]>
make the changes suggested by vissarion

github.com/GeomScale/volesti - fa79b046ba0054b84c0d90fa366e8177c87fc0c7 authored over 6 years ago by tolischal <[email protected]>
add function gaussian_next_point in order to use it when we have to sample just a point and to exploit coordinate direction better complexity.

github.com/GeomScale/volesti - b0b4b0539b816d12f0f60653c078e035ecaa02e9 authored over 6 years ago by tolischal <[email protected]>
implement coordinate direction hit and run

github.com/GeomScale/volesti - c9b1dd0f77869f75fa3db66e2832faa1fec27a05 authored over 6 years ago by tolischal <[email protected]>
fix a bug in rand_exp_range function and change the seed for the random sampler using chrono library. CV algo returns the correct result.

github.com/GeomScale/volesti - 77c4689dca50499a5441031c830fb43ba6d66eef authored over 6 years ago by Tolis <[email protected]>
fix random direction sampler

github.com/GeomScale/volesti - 1e7abb308faa4dda484023b8c765eebcb86627da authored over 6 years ago by tolischal <[email protected]>
merge cgal_remove branch into schedule_annealing

github.com/GeomScale/volesti - eaa06a64cc0e67f6f31ed38c3b7f8857be2f22ed authored over 6 years ago by tolischal <[email protected]>
Merge branch 'cgal_remove' into schedule_annealing

github.com/GeomScale/volesti - 7ac3cedcfce64e09ee3e5561f8ac09aa95dfec86 authored over 6 years ago by tolischal <[email protected]>
Add tests using doctest library and CMake

github.com/GeomScale/volesti - 61bfb0687f2b615af35906e525ef578624c26a4b authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>
fix some errors in sampling functions while debbuging'

github.com/GeomScale/volesti - bc41b90fc934ceedc81a6aeb7984364e5b0d05e5 authored over 6 years ago by tolischal <[email protected]>
Remove error code return from help mode of volume

github.com/GeomScale/volesti - 171b21c381ecdae9ce1dd679f2707d911d7ebb50 authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>
CircleCi2 script for compilation

github.com/GeomScale/volesti - 0b1554a42c219faf05b04774d793a847e3254b5c authored over 6 years ago by Vissarion Fisikopoulos <[email protected]>