| 1 | |
|---|
| 2 | /* version 3.6. (c) Copyright 1993-2000 by the University of Washington. |
|---|
| 3 | Written by Joseph Felsenstein, Akiko Fuseki, Sean Lamont, and Andrew Keeffe. |
|---|
| 4 | Permission is granted to copy and use this program provided no fee is |
|---|
| 5 | charged for it and provided that this copyright notice is not removed. */ |
|---|
| 6 | |
|---|
| 7 | /* |
|---|
| 8 | wagner.h: included in move, mix & penny |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | #ifndef OLDC |
|---|
| 12 | /* function prototypes */ |
|---|
| 13 | void inputmixture(bitptr); |
|---|
| 14 | void inputmixturenew(bitptr); |
|---|
| 15 | void printmixture(FILE *, bitptr); |
|---|
| 16 | void fillin(node2 *,long, boolean, bitptr, bitptr); |
|---|
| 17 | void count(long *, bitptr, steptr, steptr); |
|---|
| 18 | void postorder(node2 *, long, boolean, bitptr, bitptr); |
|---|
| 19 | void cpostorder(node2 *, boolean, bitptr, steptr, steptr); |
|---|
| 20 | void filltrav(node2 *, long, boolean, bitptr, bitptr); |
|---|
| 21 | void hyprint(struct htrav_vars2 *,boolean,boolean,boolean,bitptr,Char *); |
|---|
| 22 | void hyptrav(node2 *, boolean, bitptr, long, boolean, boolean, bitptr, |
|---|
| 23 | bitptr, bitptr, pointptr2, Char *, gbit *); |
|---|
| 24 | void hypstates(long, boolean, boolean, boolean, node2 *, bitptr, bitptr, |
|---|
| 25 | bitptr, pointptr2, Char *, gbit *); |
|---|
| 26 | |
|---|
| 27 | void drawline(long, double, node2 *); |
|---|
| 28 | void printree(boolean, boolean, boolean, node2 *); |
|---|
| 29 | void writesteps(boolean, steptr); |
|---|
| 30 | /* function prototypes */ |
|---|
| 31 | #endif |
|---|
| 32 | |
|---|