JVM Languages
sojournr.txt
Associated article: Dynamic Distributed Systems in Java
Tags: JVM Languages
Published source code accompanying the article by Phil Rousselle in which he examines dynamic distributed Java programming techniques by presenting "Sojourner," a load- balancing system that uses Voyager distributed computing infrastructure from Objectspace. Also see SOJOURNR.ZIP.
Dynamic Distribution Systems in Java
by Philip Rousselle
Listing One
import java.lang.Math;
import java.util.Random;
public class MonteCarloTest implements FofX {
public double computeFof(double x)
{
return Math.sqrt(x);
}
public static void main(String[] args)
{
MonteCarlo estimator = ...


