/// <summary>
 /// Solves the backpacking problem, and prints out information
 /// about the solution.
 /// </summary>
 public void Run()
 {
     Solve(TheBackPack.WeightCapacityLeft);
     TheBackPack.PrintContent();
     System.Console.WriteLine();
     TheVault.PrintContent();
 }
 /// <summary>
 /// Solves the backpacking problem, and prints out information
 /// about the solution.
 /// </summary>
 public void Run()
 {
     Solve(TheBackPack.WeightCapacityLeft);
     TheBackPack.PrintContent();
     TheVault.PrintContent();
 }