cvsimport mirror of prefuse.org cvs
Stars
8
Forks
2
Watchers
8
Open Issues
0
Overall repository health assessment
No package.json found
This might not be a Node.js project
No contributors data available
Corrected error in Javadoc for interp methods. Val is a value between min and max, not 0.0 and 1.0.
f286a46View on GitHubrevert change to SpanningTree for now; to discuss: directed spanning trees
c705acaView on GitHubAdded initialization of spanning tree outside build routine. This allows a extension of SpanningTree to, for instance, a DirectedSpanningTree where only the buildSpanningTree(Node root) method needs to be overridden. As it was, buildSpanningTree contained calls to super.setRoot() and if SpanningTree was overridden, there was no way to set root anymore. Now initialize(Root) can be called. Didn't want to allow access to SpanningTree.setRoot() as that API should not be used for spanning trees.
4dbf93fView on GitHubChanged error reporting to adding columns to tables so that "column already exists" exception is not hidden by AbstractTupleSet.addColumns(Schema). But, the IllegalArgumentException is only generated when one attempts to add a column with an existing name and a different type (re-add column with same name & type has no effect [reverted to the previous behaviour]).
3c86777View on GitHubfixed Javadoc on Visualization.addAggregates(String, Schema)
95fa7e4View on GitHubClarified use of addAggregates(String, Schema) in Javadoc; if Schema doesn't extend VisualItem.SCHEMA then missing column exceptions are generated when visualizing aggregates.
b7abe3fView on GitHubIn addColumn methods, removed hiding of IllegalArgumentException thrown when a column with the same name is added twice.
44b750bView on GitHubMade minor adjustments to ObjectColumn and ExpressionParserTokenManager to remove compiler warnings
3a85a2dView on GitHubAdded root node checks to TreeNodeIterator to avoid iteration errors
c9fe946View on GitHubAdded patch to TreeMLWriter to avoid dumping null values (Patch #1758889 from mwlinnem)
143289aView on GitHubAdded new readers/writers for fixed width text data table formats
7fb03b8View on GitHub