These are programs that are written to accompany specific papers. In addition, see the programs (or packages)
C program that reads from a file a 3x3 blank-separated matrix of fitnesses for two alleles at two loci, plus recombination fraction and starting gene frequencies and linkage disequilibrium, and allows you to iterate generations and see whether mean fitnesses are increasing or decreasing in each generation
click here to go to folder of program
click here to go to folder of program
click here to go to folder of program
click here to go to folder of programs
A warning about compiling the FORTRAN IV programs: They use the operator .AND. to do bitwise AND operations. This may work in FORTRAN 77, as there is backwards compatibility in it. In Gnu FORTRAN it will work if you use the -fdec flag with the compiler. Otherwise it may be necessary to change expressions like M.AND.N to IAND(M, N) or to AND(M,N).
Pascal programs for the 1981 paper in Evolution: "Skepticism towards Santa Rosalia, or Why are there so few kinds of animals?"
click here to go to folder of programs