ikpx 2.2

For scripts to aid with computation or simulation in cellular automata.
User avatar
silversmith
Posts: 358
Joined: June 15th, 2020, 6:20 pm
Location: Pennsylvania, USA, Earth, Sector 5ff63D6
Contact:

Re: ikpx 2.2

Post by silversmith » September 27th, 2024, 4:47 pm

CARuler wrote:
September 27th, 2024, 3:23 pm
I can't seem to get it working
What did you try? What errors did you get?
A simulator with the tools I couldn’t find elsewhere: https://silversimulations.com/caplayer/
Documentation:https://github.com/teraxtech/caplayer

User avatar
CARuler
Posts: 311
Joined: July 30th, 2024, 5:38 pm
Location: A rule-verse in floor rule-verse of the CGOL skyscraper

Re: ikpx 2.2

Post by CARuler » September 27th, 2024, 5:09 pm

I just couldn't find the download

User avatar
silversmith
Posts: 358
Joined: June 15th, 2020, 6:20 pm
Location: Pennsylvania, USA, Earth, Sector 5ff63D6
Contact:

Re: ikpx 2.2

Post by silversmith » September 27th, 2024, 6:43 pm

Well have you ever used git?

If you have git then run

Code: Select all

git clone https://gitlab.com/apgoucher/ikpx2.git
in whatever folder you want ikpx2 to be in.

If you don't have git, then try to install it. On Linux it's easy to install git and ikpx2, otherwise the process could get complex.

If you need help, tell us what operating system you have.
A simulator with the tools I couldn’t find elsewhere: https://silversimulations.com/caplayer/
Documentation:https://github.com/teraxtech/caplayer

User avatar
CARuler
Posts: 311
Joined: July 30th, 2024, 5:38 pm
Location: A rule-verse in floor rule-verse of the CGOL skyscraper

Re: ikpx 2.2

Post by CARuler » September 29th, 2024, 8:15 pm

silversmith wrote:
September 27th, 2024, 6:43 pm
Well have you ever used git?

If you have git then run

Code: Select all

git clone https://gitlab.com/apgoucher/ikpx2.git
in whatever folder you want ikpx2 to be in.

If you don't have git, then try to install it. On Linux it's easy to install git and ikpx2, otherwise the process could get complex.

If you need help, tell us what operating system you have.
alright, done all steps.
now how do I open it?
um... can't seem to find it

User avatar
silversmith
Posts: 358
Joined: June 15th, 2020, 6:20 pm
Location: Pennsylvania, USA, Earth, Sector 5ff63D6
Contact:

Re: ikpx 2.2

Post by silversmith » September 30th, 2024, 12:21 am

CARuler wrote:
September 29th, 2024, 8:15 pm
um... can't seem to find it
Navigate to the ikpx2 folder. It should be made in the location where you ran "git clone". In it there should be a recompile.sh file, a README.md, and several other folders. Run:

Code: Select all

./recompile.sh
This will create the ikpx2 executable, which can be run like this:

Code: Select all

./ikpx2 --velocity c/3
The "--velocity c/3" can be replaced with other options you can use to customize the search. The README.md lists most of the options you can use, and some examples.
CARuler wrote:
September 29th, 2024, 8:15 pm
now how do I open it?
In summary, ikpx2 isn't a program you install like other applications. Rather you run the executables from within the ikpx2 folder.
A simulator with the tools I couldn’t find elsewhere: https://silversimulations.com/caplayer/
Documentation:https://github.com/teraxtech/caplayer

User avatar
CARuler
Posts: 311
Joined: July 30th, 2024, 5:38 pm
Location: A rule-verse in floor rule-verse of the CGOL skyscraper

Re: ikpx 2.2

Post by CARuler » September 30th, 2024, 5:20 pm

Ok, now how do I give it my commands? I typed in ./ikpx2 and it didn't work

User avatar
LaundryPizza03
Posts: 2424
Joined: December 15th, 2017, 12:05 am
Location: Unidentified location "https://en.wikipedia.org/wiki/Texas"

Re: ikpx 2.2

Post by LaundryPizza03 » September 30th, 2024, 5:30 pm

CARuler wrote:
September 30th, 2024, 5:20 pm
Ok, now how do I give it my commands? I typed in ./ikpx2 and it didn't work

Code: Select all

./recompile.sh --rule <RULE>

Code: Select all

./ikpx2 -v <speed>
Type in ./ikpx2 -h for more information.

Code: Select all

x = 4, y = 3, rule = B3-q4z5y/S234k5j
2b2o$b2o$2o!
LaundryPizza03 at Wikipedia

User avatar
CARuler
Posts: 311
Joined: July 30th, 2024, 5:38 pm
Location: A rule-verse in floor rule-verse of the CGOL skyscraper

Re: ikpx 2.2

Post by CARuler » September 30th, 2024, 5:37 pm

LaundryPizza03 wrote:
September 30th, 2024, 5:30 pm
CARuler wrote:
September 30th, 2024, 5:20 pm
Ok, now how do I give it my commands? I typed in ./ikpx2 and it didn't work

Code: Select all

./recompile.sh --rule <RULE>

Code: Select all

./ikpx2 -v <speed>
Type in ./ikpx2 -h for more information.
I meant how do get it to execute commands in git

User avatar
silversmith
Posts: 358
Joined: June 15th, 2020, 6:20 pm
Location: Pennsylvania, USA, Earth, Sector 5ff63D6
Contact:

Re: ikpx 2.2

Post by silversmith » October 1st, 2024, 5:27 pm

CARuler wrote:
September 30th, 2024, 5:37 pm
I meant how do get it to execute commands in git
One executes commands in a command line. Git is one program you can use in a command line, like with:

Code: Select all

git clone https://gitlab.com/apgoucher/ikpx2.git
ikpx2 is another program you can use in a command line like with

Code: Select all

./ikpx2 --velocity c/3
What application are you typing in? What happened when you ran the recompile.sh program?

Code: Select all

./recompile.sh
A simulator with the tools I couldn’t find elsewhere: https://silversimulations.com/caplayer/
Documentation:https://github.com/teraxtech/caplayer

User avatar
CARuler
Posts: 311
Joined: July 30th, 2024, 5:38 pm
Location: A rule-verse in floor rule-verse of the CGOL skyscraper

Re: ikpx 2.2

Post by CARuler » October 1st, 2024, 6:53 pm

silversmith wrote:
October 1st, 2024, 5:27 pm

What application are you typing in? What happened when you ran the recompile.sh program?

Code: Select all

./recompile.sh
A window in git opened and closed nothing else happened

User avatar
confocaloid
Posts: 4246
Joined: February 8th, 2022, 3:15 pm
Location: https://catagolue.hatsya.com/census/b3s234c/C4_4/xp62

Re: ikpx 2.2

Post by confocaloid » October 1st, 2024, 7:10 pm

CARuler wrote:
October 1st, 2024, 6:53 pm
[...] A window in git opened and closed nothing else happened
Looks like essentially the same point was already answered, in a recent discussion about another CLI software tool:
confocaloid wrote:
September 16th, 2024, 9:31 pm
CARuler wrote:
September 16th, 2024, 9:13 pm
it doesn't open upon me pressing the open button I can see it flash before it closes
qfind needs to be invoked from the command line, with appropriate parameters that depend on what kind of spaceships you want to find.
Similarly to many other search programs in existence, qfind is a CLI software tool ("command line interface").
127:1 B3/S234c User:Confocal/R (isotropic CA, incomplete)
Unlikely events happen.
My silence does not imply agreement, nor indifference. If I disagreed with something in the past, then please do not construe my silence as something that could change that.

User avatar
CARuler
Posts: 311
Joined: July 30th, 2024, 5:38 pm
Location: A rule-verse in floor rule-verse of the CGOL skyscraper

Re: ikpx 2.2

Post by CARuler » October 1st, 2024, 8:08 pm

confocaloid wrote:
October 1st, 2024, 7:10 pm


Looks like essentially the same point was already answered, in a recent discussion about another CLI software tool:
confocaloid wrote:
September 16th, 2024, 9:31 pm
CARuler wrote:
September 16th, 2024, 9:13 pm
it doesn't open upon me pressing the open button I can see it flash before it closes
qfind needs to be invoked from the command line, with appropriate parameters that depend on what kind of spaceships you want to find.
Similarly to many other search programs in existence, qfind is a CLI software tool ("command line interface").
That was in the command terminal, not git

User avatar
silversmith
Posts: 358
Joined: June 15th, 2020, 6:20 pm
Location: Pennsylvania, USA, Earth, Sector 5ff63D6
Contact:

Re: ikpx 2.2

Post by silversmith » October 3rd, 2024, 10:48 am

CARuler wrote:
September 27th, 2024, 3:23 pm
I can't seem to get it working
CARuler wrote:
September 29th, 2024, 8:15 pm
alright, done all steps.
now how do I open it?
um... can't seem to find it
CARuler wrote:
September 30th, 2024, 5:20 pm
Ok, now how do I give it my commands? I typed in ./ikpx2 and it didn't work
CARuler wrote:
October 1st, 2024, 8:08 pm
That was in the command terminal, not git
In general, to get help on the internet, you need to be willing to share a lot of information. The basics include:
  • What did you do?
  • What were there results?
  • What environment you are working in?
Without this kind of information, nobody will be able to help you with what you are dealing with. I don't even know if you are working on Windows, Linux, MacOS, or something else.

What operating system are you using? If you don't understand the question, what kind of computer are you using?
What is the exact name of the application you are working in?
What folder are you running commands in? If it's "ikpx2", type the command "ls" and check if a file named "ikpx2" is listed.
What errors are you getting? Ideally copy and paste whatever happens after you run a command. For example, if I try to run ikpx2 in the wrong folder, it looks like this.

Code: Select all

[user@computername ~]$ ./ikpx2
bash: ./ikpx2: No such file or directory
[user@computername ~]$
If I run the "ls" command in my ikpx2 folder, it looks like this:

Code: Select all

[user@computername ikpx2]$ ls
apgmera                                                                                         backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_21_even.bin   cqueue         README.md
backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_6_width_23_odd.bin    backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_21_final.bin  docs           recompile.sh
backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_18_even.bin   backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_21_odd.bin    ikpx2          solvers
backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_18_final.bin  backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_22_even.bin   kissat         src
backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_18_odd.bin    backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_22_odd.bin    kissat_extras
backup_b2cei3-eijr4ceirtw5ciqy6-e7cs1c2-c3-aiqy4ikntw5nqr6-a_velocity_2_1_7_width_19_odd.bin    cadical                                                                                         LICENCE.txt
[user@computername ikpx2]$
A simulator with the tools I couldn’t find elsewhere: https://silversimulations.com/caplayer/
Documentation:https://github.com/teraxtech/caplayer

User avatar
CARuler
Posts: 311
Joined: July 30th, 2024, 5:38 pm
Location: A rule-verse in floor rule-verse of the CGOL skyscraper

Re: ikpx 2.2

Post by CARuler » Today, 1:19 am

i'm working on a windows thinkpad
also, there's nothing before the $

Post Reply