1

I'm trying to run java code using eclipse. I'm running this code: http://algs4.cs.princeton.edu/65reductions/Simplex.java.html I got error in line 317/ 319/ 322 as "StdRandom Cannot be resolved"

  • Maybe you should get StdRandom.java from their website: http://introcs.cs.princeton.edu/java/stdlib/StdRandom.java.html ? While you're at it, get StdOut.java too: http://introcs.cs.princeton.edu/java/stdlib/StdOut.java.html. – Edwin Torres May 29 '14 at 20:30

1 Answers1

0

Get the StdRandom from princeton's repository here, then compile it along with your Simplex.java

Abdul Fatir
  • 6,159
  • 5
  • 31
  • 58