source: trunk/greenstone3-extensions/vishnu/src/vishnu/testvis/dendro/MinLink.java@ 8189

Last change on this file since 8189 was 8189, checked in by kjdon, 20 years ago

first version of Imperial College's Visualiser code

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 172 bytes
Line 
1package vishnu.testvis.dendro;
2
3public class MinLink extends LinkFunc
4{
5 public double link(double a, double b)
6 {
7 return (a < b? a*999+b: b*999+a)/1000;
8 }
9}
Note: See TracBrowser for help on using the repository browser.