This repository was archived by the owner on Mar 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindividual.h
More file actions
38 lines (30 loc) · 1.29 KB
/
individual.h
File metadata and controls
38 lines (30 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef INDIVIDUAL_H
#define INDIVIDUAL_H 1
/*
* individual.h -- Deals with individuals.
* $Id: individual.h,v 1.3 2002/05/30 17:04:18 rwx Exp $
*/
/*
* Copyright (C) 2002 Juan M. Bello Rivas <rwx@synnergy.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
struct individual;
extern struct individual *new_individual(size_t chrom_len);
extern void delete_individual(struct individual *self);
extern struct chromosome *individual_get_chromosome(struct individual *self);
extern void individual_set_fitness(struct individual *self, double fitness);
extern double individual_get_fitness(struct individual *self);
#endif /* !INDIVIDUAL_H */