Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/10/13 21:06:55 (11 years ago)
Author:
ascheibe
Message:

#1886

  • added new convex hull algorithm based on SMO/SVM
  • added unit test and a visualization
  • updated MIConvexHull
Location:
branches/HeuristicLab.Analysis.AlgorithmBehavior
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior

    • Property svn:global-ignores set to
      HeuristicLab.Analysis.AlgorithmBehavior.sln.DotSettings.user
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/MIConvexHull/ConvexHull/ConvexFaceInternal.cs

    r9730 r9945  
    4040            return x.Index.CompareTo(y.Index);
    4141        }
     42    }
     43
     44    /// <summary>
     45    /// For deferred face addition.
     46    /// </summary>
     47    sealed class DeferredFace
     48    {
     49        /// <summary>
     50        /// The faces.
     51        /// </summary>
     52        public ConvexFaceInternal Face, Pivot, OldFace;
     53
     54        /// <summary>
     55        /// The indices.
     56        /// </summary>
     57        public int FaceIndex, PivotIndex;
    4258    }
    4359
Note: See TracChangeset for help on using the changeset viewer.