src/metric.h
/* [<][>][^][v][top][bottom][index][help] */
FUNCTIONS
This source file includes following functions.
1 /*
2 * VFsys.h - misc definitions for internals of VFlib
3 *
4 */
5 /*
6 * Copyright (C) 1996, 1997 Hirotsugu Kakugawa.
7 * All rights reserved.
8 *
9 * This file is part of the VFlib Library. This library is free
10 * software; you can redistribute it and/or modify it under the terms of
11 * the GNU Library General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your
13 * option) any later version. This library is distributed in the hope
14 * that it will be useful, but WITHOUT ANY WARRANTY; without even the
15 * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
22 #ifndef __VFLIB_METRIC_H__
23 #define __VFLIB_METRIC_H__
24
25 extern VF_METRIC1 vf_alloc_metric1(void);
26 extern VF_METRIC2 vf_alloc_metric2(void);
27 extern void vf_metric1_to_metric2(VF_METRIC1,double,VF_METRIC2);
28
29 extern void vf_dump_metric1(VF_METRIC1);
30 extern void vf_dump_metric2(VF_METRIC2);
31
32 #endif
33 /*EOF*/