Changeset 445
- Timestamp:
- 03/16/2009 08:50:30 PM (3 years ago)
- Location:
- trunk/matml/src/ternary
- Files:
-
- 1 added
- 2 modified
-
ChangeLog (modified) (1 diff)
-
Makefile.am (modified) (1 diff)
-
square.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/matml/src/ternary/ChangeLog
r443 r445 13 13 * New "square" free energy parameters for pseudo-square representation. 14 14 * Rectangle bookkeeping functions complete square functionality. 15 * New "square" example program demonstrates these functions. 15 16 16 17 -- -
trunk/matml/src/ternary/Makefile.am
r413 r445 9 9 AUTOMAKE_OPTIONS=1.5 10 10 11 bin_PROGRAMS = ternary 11 bin_PROGRAMS = ternary square 12 12 noinst_HEADERS = ternary.h 13 13 ternary_SOURCES = ternary.c geomview.c qhull.c book.c freenergy.c spinodal.c 14 14 ternary_CFLAGS = -std=c99 -DGEOMVIEW=\"@GEOMVIEW@\" #-DDEBUG 15 15 ternary_LDADD = -lm -lqhull 16 square_SOURCES = square.c geomview.c qhull.c book.c freenergy.c spinodal.c 17 square_CFLAGS = -std=c99 -DGEOMVIEW=\"@GEOMVIEW@\" #-DDEBUG 18 square_LDADD = -lm -lqhull 16 19 17 20 EXTRA_DIST = macros/autogen.sh macros/cxref-latex.m4 \