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

The FORM project for symbolic manipulation of very big expressions

License

NotificationsYou must be signed in to change notification settings

form-dev/form

Repository files navigation

TestCoverage Status

FORM is a Symbolic Manipulation System. It reads symbolic expressions from files and executes symbolic/algebraic transformations upon them. The answers are returned in a textual mathematical representation. As its landmark feature, the size of the considered expressions in FORM is only limited by the available disk space and not by the available RAM. FORM has been essential for many state-of-the-art computations in High Energy Physics.

FORM's original author is Jos Vermaseren of NIKHEF, the Dutch institute for subatomic physics. Other people that have made contributions can be found in the file "AUTHORS".

Quick examples

The following FORM program repeatedly matches the power of a variablex in the expressionE, as long as the power is more than 1 and creates two new terms with lower power:

Symbol x,n;Local E = x^10;repeat id x^n?{>1} = x^(n-1) + x^(n-2);Print;.end

and yieldsE = 34 + 55*x.

The following FORM program matches the functionf that has any arguments before encountering anx and any arguments after, and switches them around:

CFunction f;Symbol x;Local E = f(1,2,x,3,4);id f(?a,x,?b) = f(?b,?a);Print;.end

and yieldsE = f(3,4,1,2).

FORM can match many more complicated patterns and has many more features, as documented in theadditional information.

Build instructions

Before building FORM, it is advised to install the optional dependenciesgmp andzlib for better performance. To quickly build FORM, install theautoconf andautomake packages. Then, after cloning the repository, run:

autoreconf -i./configuremakemake install

For more advanced build options, see the file "INSTALL".

Additional information

The latest reference manual can be foundhere and the Form Cookbook can be foundhere.

More background information, a collection of FORM programs, and a number of courses can be found on the officialFORM website and on theWiki.

Information about copying and licensing of this software can be found in the file "COPYING".

Bugs and remarks

For reporting bugs, asking questions, giving remarks and suggestions, we welcome you to use theIssue Tracker.

About

The FORM project for symbolic manipulation of very big expressions

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp