commit 4fd3688380b5652516e99b3c77ccbfa3241e2a64
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Wed Mar 22 00:12:39 2023 +0100

    Progess with Skewb solver.

diff --git a/src/main/java/org/distorted/solvers/SolverSkewb.java b/src/main/java/org/distorted/solvers/SolverSkewb.java
index e70b8055..0bb28682 100644
--- a/src/main/java/org/distorted/solvers/SolverSkewb.java
+++ b/src/main/java/org/distorted/solvers/SolverSkewb.java
@@ -281,7 +281,7 @@ for(int i=0; i<8; i++) android.util.Log.e("D", "twist "+i+" : "+twist[i]);
     if( (total%3)!=0 ) return ERROR_CORNER_TWISTED;
     int totalTwist = twist[0]+ 3*(twist[1]+ 3*(twist[2]+ 3*(twist[3]+ 3*(twist[4]+ 3*(twist[5]+ 3*twist[6])))));
 
-    int locationOfFree0 = TBSkewb.computeLocation(quats[1]);
+    int locationOfFree0 = TBSkewb.computeLocation(0,quats[1]);
 
     return center_perm_num+ 360*(totalTwist + 2187*locationOfFree0);
     }
@@ -398,13 +398,16 @@ for(int i=0; i<8; i++) android.util.Log.e("D", "twist "+i+" : "+twist[i]);
     {
     if( mSolver==null )
       {
-      mSolver = ImplementedTablebasesList.createUnpacked(ObjectSignatures.SKEW_2);
-
+      mSolver = ImplementedTablebasesList.createPacked(res,ObjectSignatures.SKEW_2);
+/*
       if( mSolver!=null )
         {
-        mSolver.createTablebase(2);
-      //  mSolver.pack();
+        mSolver.createTablebase(-1);
+        mSolver.pack();
+       //mSolver.test();
         }
+
+ */
       }
 
     return mSolver!=null ? mSolver.solution(index,null) : null;
