Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

A (one dimensional) cellular automaton is a function1 F : Σ → Σ with the property that there is a K > 0 such that F (x)i depends only on the 2K + 1 coordinates xi−K , xi−K+1, . . . , xi−1, xi, xi+1, . . . , xi+K . A periodic point of σ is any x such that σ^p (x) = x for some p ∈ N, and a periodic point of F is any x such that F^q (x) = x for some q ∈ N. Given a cellular automaton F, a point x ∈ Σ is jointly periodic if there are p, q ∈ N such that σ^p (x) = F^q (x) = x, that is, it is a periodic point under both functions.

This project aims to explore the nature of one-dimensional Cellular Automata, in the hope of finding the structure of cellular automata through its periodic points.

2034 views
License: MIT
ubuntu2004
1
/*
2
*
3
* Copyright (c) 1994
4
* Hewlett-Packard Company
5
*
6
* Permission to use, copy, modify, distribute and sell this software
7
* and its documentation for any purpose is hereby granted without fee,
8
* provided that the above copyright notice appear in all copies and
9
* that both that copyright notice and this permission notice appear
10
* in supporting documentation. Hewlett-Packard Company makes no
11
* representations about the suitability of this software for any
12
* purpose. It is provided "as is" without express or implied warranty.
13
*
14
* Copyright (c) 1996,1997
15
* Silicon Graphics Computer Systems, Inc.
16
*
17
* Permission to use, copy, modify, distribute and sell this software
18
* and its documentation for any purpose is hereby granted without fee,
19
* provided that the above copyright notice appear in all copies and
20
* that both that copyright notice and this permission notice appear
21
* in supporting documentation. Silicon Graphics makes no
22
* representations about the suitability of this software for any
23
* purpose. It is provided "as is" without express or implied warranty.
24
*/
25
26
#ifndef __SGI_STL_ALGOBASE_H
27
#define __SGI_STL_ALGOBASE_H
28
29
#ifndef __SGI_STL_PAIR_H
30
#include <pair.h>
31
#endif
32
#ifndef __SGI_STL_ITERATOR_H
33
#include <iterator.h>
34
#endif
35
#ifndef __SGI_STL_INTERNAL_ALGOBASE_H
36
#include <stl_algobase.h>
37
#endif
38
#ifndef __SGI_STL_INTERNAL_UNINITIALIZED_H
39
#include <stl_uninitialized.h>
40
#endif
41
42
#ifdef __STL_USE_NAMESPACES
43
44
// Names from stl_algobase.h
45
using __STD::iter_swap;
46
using __STD::swap;
47
using __STD::min;
48
using __STD::max;
49
using __STD::copy;
50
using __STD::copy_backward;
51
using __STD::copy_n;
52
using __STD::fill;
53
using __STD::fill_n;
54
using __STD::mismatch;
55
using __STD::equal;
56
using __STD::lexicographical_compare;
57
using __STD::lexicographical_compare_3way;
58
59
// Names from stl_uninitialized.h
60
using __STD::uninitialized_copy;
61
using __STD::uninitialized_copy_n;
62
using __STD::uninitialized_fill;
63
using __STD::uninitialized_fill_n;
64
65
#endif /* __STL_USE_NAMESPACES */
66
67
#endif /* __SGI_STL_ALGOBASE_H */
68
69
// Local Variables:
70
// mode:C++
71
// End:
72
73