Using Your OpenList to
Implement Unicalc Functionality
lWe want to represent
Unicalc Quantities.
lIn Java, instead of
using a list of 3 things, we will add a
little more structure:
public class
Quantity
{
private double Factor;
private OpenList Num;
private OpenList Denom;
É more stuff to come É
}