Skip to content

Commit 4ab36a2

Browse files
committed
Add License
1 parent 2400ec0 commit 4ab36a2

File tree

7 files changed

+113
-1
lines changed

7 files changed

+113
-1
lines changed

src/PairEx.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* HPhi - Quantum Lattice Model Simulator */
2+
/* Copyright (C) 2015 The University of Tokyo */
3+
4+
/* This program is free software: you can redistribute it and/or modify */
5+
/* it under the terms of the GNU General Public License as published by */
6+
/* the Free Software Foundation, either version 3 of the License, or */
7+
/* (at your option) any later version. */
8+
9+
/* This program is distributed in the hope that it will be useful, */
10+
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11+
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
12+
/* GNU General Public License for more details. */
13+
14+
/* You should have received a copy of the GNU General Public License */
15+
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
16+
/*-------------------------------------------------------------*/
117
#include "bitcalc.h"
218
#include "mltplyCommon.h"
319
#include "PairEx.h"

src/PairExHubbard.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* HPhi - Quantum Lattice Model Simulator */
2+
/* Copyright (C) 2015 The University of Tokyo */
3+
4+
/* This program is free software: you can redistribute it and/or modify */
5+
/* it under the terms of the GNU General Public License as published by */
6+
/* the Free Software Foundation, either version 3 of the License, or */
7+
/* (at your option) any later version. */
8+
9+
/* This program is distributed in the hope that it will be useful, */
10+
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11+
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
12+
/* GNU General Public License for more details. */
13+
14+
/* You should have received a copy of the GNU General Public License */
15+
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
16+
/*-------------------------------------------------------------*/
117
#include "bitcalc.h"
218
#include "wrapperMPI.h"
319
#include "mltplyCommon.h"

src/PairExSpin.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* HPhi - Quantum Lattice Model Simulator */
2+
/* Copyright (C) 2015 The University of Tokyo */
3+
4+
/* This program is free software: you can redistribute it and/or modify */
5+
/* it under the terms of the GNU General Public License as published by */
6+
/* the Free Software Foundation, either version 3 of the License, or */
7+
/* (at your option) any later version. */
8+
9+
/* This program is distributed in the hope that it will be useful, */
10+
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11+
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
12+
/* GNU General Public License for more details. */
13+
14+
/* You should have received a copy of the GNU General Public License */
15+
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
16+
/*-------------------------------------------------------------*/
117
#include "PairExSpin.h"
218
#include "bitcalc.h"
319
#include "wrapperMPI.h"

src/eigenIO.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* HPhi - Quantum Lattice Model Simulator */
2+
/* Copyright (C) 2015 The University of Tokyo */
3+
4+
/* This program is free software: you can redistribute it and/or modify */
5+
/* it under the terms of the GNU General Public License as published by */
6+
/* the Free Software Foundation, either version 3 of the License, or */
7+
/* (at your option) any later version. */
8+
9+
/* This program is distributed in the hope that it will be useful, */
10+
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11+
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
12+
/* GNU General Public License for more details. */
13+
14+
/* You should have received a copy of the GNU General Public License */
15+
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
16+
/*-------------------------------------------------------------*/
117
#include "eigenIO.h"
218

319
int comp(const void *p, const void *q) {

src/include/CalcTime.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* HPhi - Quantum Lattice Model Simulator */
2+
/* Copyright (C) 2015 The University of Tokyo */
3+
4+
/* This program is free software: you can redistribute it and/or modify */
5+
/* it under the terms of the GNU General Public License as published by */
6+
/* the Free Software Foundation, either version 3 of the License, or */
7+
/* (at your option) any later version. */
8+
9+
/* This program is distributed in the hope that it will be useful, */
10+
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11+
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
12+
/* GNU General Public License for more details. */
13+
14+
/* You should have received a copy of the GNU General Public License */
15+
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
16+
/*-------------------------------------------------------------*/
117
#pragma once
218
#ifdef _OSX
319
#include <mach/clock.h>

src/include/eigenIO.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* HPhi - Quantum Lattice Model Simulator */
2+
/* Copyright (C) 2015 The University of Tokyo */
3+
4+
/* This program is free software: you can redistribute it and/or modify */
5+
/* it under the terms of the GNU General Public License as published by */
6+
/* the Free Software Foundation, either version 3 of the License, or */
7+
/* (at your option) any later version. */
8+
9+
/* This program is distributed in the hope that it will be useful, */
10+
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11+
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
12+
/* GNU General Public License for more details. */
13+
14+
/* You should have received a copy of the GNU General Public License */
15+
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
16+
/*-------------------------------------------------------------*/
117
#include <complex.h>
218
#include <stdlib.h>
319
#include <stdio.h>

src/time.c

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/* HPhi - Quantum Lattice Model Simulator */
2+
/* Copyright (C) 2015 The University of Tokyo */
3+
4+
/* This program is free software: you can redistribute it and/or modify */
5+
/* it under the terms of the GNU General Public License as published by */
6+
/* the Free Software Foundation, either version 3 of the License, or */
7+
/* (at your option) any later version. */
8+
9+
/* This program is distributed in the hope that it will be useful, */
10+
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
11+
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
12+
/* GNU General Public License for more details. */
13+
14+
/* You should have received a copy of the GNU General Public License */
15+
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
16+
/*-------------------------------------------------------------*/
117
/*-------------------------------------------------------------
218
* HPhi
319
* timer program
@@ -242,4 +258,4 @@ void OutputTimer(struct BindStruct *X) {
242258

243259
/**
244260
@page page_time Compute elapsed time for new functions
245-
*/
261+
*/

0 commit comments

Comments
 (0)