File:4-state, 2-symbol Busy Beaver animation.gif

From WikiProjectMed
Jump to navigation Jump to search

Original file(1,092 × 360 pixels, file size: 1.64 MB, MIME type: image/gif, looped, 112 frames, 56 s)

Note: Due to technical limitations, thumbnails of high resolution GIF images such as this one will not be animated.

This file is from a shared repository and may be used by other projects. The description on its file description page there is shown below.

Summary

Description
English: 4-state, 2-symbol Busy beaver animation made with Python. The font used is Courier Prime.
Date
Source Own work
Author Morn
GIF development
InfoField
 
This GIF graphic was created with Python.
Source code
InfoField

Python code

Source code
#!/usr/bin/python

# Busy Beaver Turing machine

# https://en.wikipedia.org/wiki/Busy_beaver

# Create GIF animation with ImageMagick:
# convert -delay 50 beaver_step*.png -loop 0 b.gif

from PIL import Image, ImageDraw, ImageFont

cell = 40 * [0]         # tape array
left, right = 10, 23    # plot limits

fs = 120
w, h = (right - left + 1) * 78, 3 * fs
fnt = ImageFont.truetype('Courier Prime.ttf', fs)

bp = len(cell) // 2     # starting position
bs = "A"                # initial state

# 3-state, 2-symbol
tab3  = {
"A": ["1RB", "1RH"],
"B": ["0RC", "1RB"],
"C": ["1LC", "1LA"],
}

# 4-state, 2-symbol
tab4 = {
"A": ["1RB", "1LB"],
"B": ["1LA", "0LC"],
"C": ["1RH", "1LD"],
"D": ["1RD", "0RA"],
}

# select table to use
tab = tab4
step = -1

while True:
    out = "".join([str(x) for x in cell])
    out2 = out[:bp] + bs + out[bp+1:]
    out  = out[left:right+1]
    out2 = out2[left:right+1]
    print(out2)

    step += 1
    im = Image.new('RGBA', (w, h), (0,0,0))
    d = ImageDraw.Draw(im)
    d.text((0, 0), out, font = fnt, fill = (255,255,0), align = "left")
    d.text((0, fs), (bp - left) * " " + bs, font = fnt, fill = (255,0,0), align = "left")
    d.text((0, 2 * fs), "STEP:%3u SUM:%2u" % (step, sum(cell)), font = fnt, fill = (0,255,0), align = "left")
    im.save("beaver_step%04u.png" % step)

    if bs == "H":
        for n in range(step + 1, step + 5):
            im.save("beaver_step%04u.png" % n)
        break
    cmd = tab[bs][cell[bp]]
    cell[bp] = int(cmd[0])
    if cmd[1] == 'R':
        bp += 1
    if cmd[1] == 'L':
        bp -= 1
    bs = cmd[2]

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

13 September 2021

image/gif

df27be3b919355804fb793fdf2429e3d1857af31

1,721,768 byte

56 second

360 pixel

1,092 pixel

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current09:04, 15 September 2021Thumbnail for version as of 09:04, 15 September 20211,092 × 360 (1.64 MB)commons>Mornshow sum

There are no pages that use this file.