Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit480ce79

Browse files
committed
Preparing for release 4.1
1 parent8fc9ffe commit480ce79

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+90
-89
lines changed

‎INSTALL‎

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ version 4.2. The zlib library should be a recent version, >= 1.2.
4242
Preparations
4343
============
4444

45-
If you have acquired the FORM sources via CVS, several files will be missing,
46-
especially the script "configure". To generate these files you have to issue the
47-
command
45+
If you have acquired the FORM sources via CVS or GIT, several files will be
46+
missing,especially the script "configure". To generate these files you have to
47+
issue thecommand
4848

4949
autoreconf -i
5050

@@ -152,8 +152,9 @@ To cleanup the distribution directory, the command
152152
can be used.
153153

154154
The production date printed by the executable will be set to the time of the
155-
compilation. If one wants to have another date printed one can give the DATE
156-
option to the make command like
155+
release of the tar-file distribution, or the time of the compilation if you
156+
use the sources acquired from CVS or GIT. If one wants to have another date
157+
printed one can give the DATE option to the make command like
157158

158159
make vorm DATE="11 Nov 2011"
159160

‎Makefile.am‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
SUBDIRS = doc sources check
2+
3+
EXTRA_DIST = README.md

‎README.md‎

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,21 @@ Installation
1717

1818
See the file "INSTALL".
1919

20-
Documentation
21-
-------------
22-
23-
See[our website](http://vermaseren.github.io/form/) for documentation, lectures and papers on FORM.
24-
2520

2621
Additional Information
2722
----------------------
2823

2924
Information about copying and licencing of this software can be found in the
3025
file "COPYING".
3126

32-
More background information and a collection of FORM programs can be found on the old FORM website:
27+
More background information, the latest version and a collection of FORM
28+
programs can be found on the official FORM website:http://www.nikhef.nl/~form.
3329

34-
http://www.nikhef.nl/~form
3530

3631
Bugs and remarks
3732
----------------
38-
Bugs can be reported via the[Issue Tracker](https://github.com/vermaseren/form/issues) of Github.
33+
Bugs can be reported via the
34+
[Issue Tracker](https://github.com/vermaseren/form/issues) of Github.
3935

40-
In case of more question or remarks, please visit the official FORM[forum](http://www.nikhef.nl/~form/forum/).
36+
In case of more question or remarks, please visit the official
37+
FORM[forum](http://www.nikhef.nl/~form/forum/).

‎configure.ac‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
m4_define([FORM_MAJORVERSION],[4])
2-
m4_define([FORM_MINORVERSION],[0])
2+
m4_define([FORM_MINORVERSION],[1])
33
m4_define([FORM_VERSION],[FORM_MAJORVERSION.FORM_MINORVERSION])
44
# set to 'yes' for beta verstions
55
m4_define([VERSION_IS_BETA],[no])

‎doc/manual/Makefile.am‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ TEXFILES = \
88
manual.tex\
99
metric.tex\
1010
module.tex\
11+
optim.tex\
1112
parallel.tex\
1213
pattern.tex\
1314
polynomials.tex\

‎sources/argument.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/* #[ License : */
88
/*
9-
* Copyright (C) 1984-2012 J.A.M. Vermaseren
9+
* Copyright (C) 1984-2013 J.A.M. Vermaseren
1010
* When using this file you are requested to refer to the publication
1111
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1212
* This is considered a matter of courtesy as the development was paid

‎sources/bugtool.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/* #[ License : */
77
/*
8-
* Copyright (C) 1984-2012 J.A.M. Vermaseren
8+
* Copyright (C) 1984-2013 J.A.M. Vermaseren
99
* When using this file you are requested to refer to the publication
1010
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1111
* This is considered a matter of courtesy as the development was paid

‎sources/checkpoint.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#] Explanations :
5454
#[ License :
5555
*
56-
* Copyright (C) 1984-2012 J.A.M. Vermaseren
56+
* Copyright (C) 1984-2013 J.A.M. Vermaseren
5757
* When using this file you are requested to refer to the publication
5858
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
5959
* This is considered a matter of courtesy as the development was paid

‎sources/comexpr.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
/* #[ License : */
99
/*
10-
* Copyright (C) 1984-2012 J.A.M. Vermaseren
10+
* Copyright (C) 1984-2013 J.A.M. Vermaseren
1111
* When using this file you are requested to refer to the publication
1212
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1313
* This is considered a matter of courtesy as the development was paid

‎sources/compcomm.c‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
/* #[ License : */
1111
/*
12-
* Copyright (C) 1984-2012 J.A.M. Vermaseren
12+
* Copyright (C) 1984-2013 J.A.M. Vermaseren
1313
* When using this file you are requested to refer to the publication
1414
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
1515
* This is considered a matter of courtesy as the development was paid

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp