automatic commit
[mlp.git] / misc.cc
1 /*
2  *  mlp-mnist is an implementation of a multi-layer neural network.
3  *
4  *  Copyright (c) 2008 Idiap Research Institute, http://www.idiap.ch/
5  *  Written by Francois Fleuret <francois.fleuret@idiap.ch>
6  *
7  *  This file is part of mlp-mnist.
8  *
9  *  mlp-mnist is free software: you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License version 3 as
11  *  published by the Free Software Foundation.
12  *
13  *  mlp-mnist is distributed in the hope that it will be useful, but
14  *  WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *  General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with mlp-mnist.  If not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22
23 // $Id: misc.cc,v 1.1 2005-12-13 17:19:11 fleuret Exp $
24
25 #include "misc.h"
26
27 int compare_couple(const void *a, const void *b) {
28   if(((Couple *) a)->value < ((Couple *) b)->value) return -1;
29   else if(((Couple *) a)->value > ((Couple *) b)->value) return 1;
30   else return 0;
31 }
32
33 int factorial(int k) {
34   int n = 1;
35   for(int l = 1; l <= k; l++) n *= l;
36   return n;
37 }