This file is indexed.

/usr/share/python-ase/doc/ase/ga.rst is in python-ase-doc 3.15.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.. module:: ase.ga
   :synopsis: Genetic Algorithm Optimization

===================
 Genetic Algorithm
===================

Genetic algorithms (GA) have proven a good alternative to Monte Carlo
type optimization methods for global structure and materials properties optimization. A GA has
recently been implemented into ase.

The use of the GA is best learned through tutorials:

.. toctree::
   :maxdepth: 1
			  
   ../tutorials/ga/ga_optimize
   ../tutorials/ga/ga_convex_hull
   ../tutorials/ga/ga_fcc_alloys

The GA implementation is diverse. It (or previous versions of it) has been used in publications with differing subjects such as structure of gold clusters on surfaces, composition of alloy nanoparticles, ammonia storage in mixed metal ammines and more. The implementation is structured such that it can be tailored to the specific problem investigated and to the computational resources available (single computer or a large computer cluster).
   
The method is described in detail in the following publications:

For **small clusters on/in support material** in:

   | L. B. Vilhelmsen and B. Hammer
   | `A genetic algorithm for first principles global structure optimization of supported nano structures`__
   | The Journal of chemical physics, Vol. 141 (2014), 044711

   __ http://dx.doi.org/10.1063/1.4886337

For **medium sized alloy clusters** in:

   | S. Lysgaard, D. D. Landis, T. Bligaard and T. Vegge
   | `Genetic Algorithm Procreation Operators for Alloy Nanoparticle Catalysts`__
   | Topics in Catalysis, Vol **57**, No. 1-4, pp. 33-39, (2014)
   
   __ http://dx.doi.org/10.1007/s11244-013-0160-9
   
A search for **mixed metal ammines for ammonia storage** have been performed
using the GA in:

   | P. B. Jensen, S. Lysgaard, U. J. Quaade and T. Vegge
   | `Designing Mixed Metal Halide Ammines for Ammonia Storage Using Density Functional Theory and Genetic Algorithms`__
   | Physical Chemistry Chemical Physics, Vol **16**, No. 36, pp. 19732-19740, (2014)
   
   __ http://dx.doi.org/10.1039/C4CP03133D
   
A simple tutorial explaining how to set up a database and perform a
similar search can be found here: :ref:`fcc_alloys_tutorial`