From 60df0265ddf4759ccc5722c3cac377977764290a Mon Sep 17 00:00:00 2001 From: matthewgthomas Date: Wed, 25 Feb 2015 16:38:44 +0000 Subject: [PATCH] Added license text to code files --- Optimal Birth Intervals/BackwardIteration.cs | 21 +++++++++++++++++++- Optimal Birth Intervals/BirthIntervals.cs | 21 +++++++++++++++++++- Optimal Birth Intervals/ForwardIteration.cs | 21 +++++++++++++++++++- Optimal Birth Intervals/PowerSet.cs | 21 +++++++++++++++++++- Optimal Birth Intervals/Program.cs | 21 +++++++++++++++++++- 5 files changed, 100 insertions(+), 5 deletions(-) diff --git a/Optimal Birth Intervals/BackwardIteration.cs b/Optimal Birth Intervals/BackwardIteration.cs index 3a39924..cdc6e84 100644 --- a/Optimal Birth Intervals/BackwardIteration.cs +++ b/Optimal Birth Intervals/BackwardIteration.cs @@ -1,4 +1,23 @@ -using System; +/* + * Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks" + * Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk) + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Optimal Birth Intervals/BirthIntervals.cs b/Optimal Birth Intervals/BirthIntervals.cs index 53a8587..c9ce913 100644 --- a/Optimal Birth Intervals/BirthIntervals.cs +++ b/Optimal Birth Intervals/BirthIntervals.cs @@ -1,4 +1,23 @@ -using System; +/* + * Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks" + * Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk) + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Optimal Birth Intervals/ForwardIteration.cs b/Optimal Birth Intervals/ForwardIteration.cs index fbf8a83..0abeb44 100644 --- a/Optimal Birth Intervals/ForwardIteration.cs +++ b/Optimal Birth Intervals/ForwardIteration.cs @@ -1,4 +1,23 @@ -using System; +/* + * Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks" + * Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk) + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Optimal Birth Intervals/PowerSet.cs b/Optimal Birth Intervals/PowerSet.cs index ad62559..c1fba15 100644 --- a/Optimal Birth Intervals/PowerSet.cs +++ b/Optimal Birth Intervals/PowerSet.cs @@ -1,4 +1,23 @@ -using System; +/* + * Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks" + * Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk) + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/Optimal Birth Intervals/Program.cs b/Optimal Birth Intervals/Program.cs index 13ae217..b658be3 100644 --- a/Optimal Birth Intervals/Program.cs +++ b/Optimal Birth Intervals/Program.cs @@ -1,4 +1,23 @@ -using System; +/* + * Code for "A Dynamic Framework for the Study of Optimal Birth Intervals Reveals the Importance of Sibling Competition and Mortality Risks" + * Copyright (C) 2015 Matthew Gwynfryn Thomas (matthewgthomas.co.uk) + * + * 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., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +using System; using System.Collections.Generic; using System.Linq; using System.Text;