Design
aa1297.txt
Associated article: Searching Decision Trees
Tags: Design
Source code accompanying the article by Rod Stephens in which he shares generic techniques that can accelerate a range of complex decision problems when you are using decision trees. Also see AA1297.ZIP.
Algorithm Alley by Rod Stephens Listing One Dim Values() As Long Dim NumValues As Integer Dim BestSolution() As Integer Dim TestSolution() As Integer Dim BestDifference As Long Dim TestDifference As Long Dim Total(1 To 2) As Long ' ********************************************* ' Search exhaustively ...


