Skip to content

Instantly share code, notes, and snippets.

View James-Matthew-Watson's full-sized avatar

James James-Matthew-Watson

View GitHub Profile
@James-Matthew-Watson
James-Matthew-Watson / Mean.java
Last active January 29, 2017 19:54
Modified Universal Construction
package universal;
public class Mean
{
public static void main(String... args)
{
Universal<Integer, Average.State, Double> universal = new Universal<Integer, Average.State, Double>(100, new Average());
for (int i = 0; i < THREADS; i++)
{