Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. TwoFlows tf = new TwoFlows(f1, f2);
  2. tf.adjustDistance();
  3. f1 = tf.f1;
  4. f2 = tf.f2;
  5. System.out.println(formatF1F2F3(f1,f2,f3));
  6. TwoFlows tf2 = new TwoFlows(f2, f3);
  7. tf2.adjustDistance();
  8. f2 = tf2.f1;
  9. f3 = tf2.f2;
  10. System.out.println(formatF1F2F3(f1,f2,f3));
  11. TwoFlows tf3 = new TwoFlows(f3, f3);
  12. tf3.adjustDistance();
  13. f3 = tf3.f1;
  14. f3 = tf3.f2;
  15. System.out.println(formatF1F2F3(f1,f2,f3));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement