1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 09:27:40 +00:00

solv:: fixmatrix

This commit is contained in:
Zeno Rogue
2019-07-30 13:02:24 +02:00
parent 3b7d80bb17
commit bbabd47ad0
3 changed files with 13 additions and 1 deletions

View File

@@ -513,7 +513,7 @@ transmatrix rgpushxto0(const hyperpoint& H) {
// (without using this, imprecision could accumulate)
void fixmatrix(transmatrix& T) {
if(sol) ;
if(sol) ; // fixed inside solmul
else if(euclid) {
for(int x=0; x<GDIM; x++) for(int y=0; y<=x; y++) {
ld dp = 0;