forked from shlomif/KlondikeSolver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deck.txt
47 lines (45 loc) · 3.28 KB
/
deck.txt
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
//The strings below are a representation of the initial deck setup where each card is 'RRS' where R=Rank and S=Suit.
//Rank goes from 01 - 13(A,2,3,...,T,J,Q,K} and Suit goes from 1 - 4(Clubs,Dimonds,Hearts,Spades)
//This representation was taken from SolitaireCraving.com to make things easier for me when I wanted to play the games.
//When I load the cardset I switch Hearts and Spades and subtract 1, I also subtract 1 from the rank.
//Switching the suits is to make computations faster by making the black suits 00 and 10 and the red suits 01 and 11.
//Their representation lists the cards as follows:
//Draw pile 29-52
//Base piles:
//#1 #2 #3 #4 #5 #6 #7
//01 02 03 04 05 06 07
// 08 09 10 11 12 13
// 14 15 16 17 18
// 19 20 21 22
// 23 24 25
// 26 27
// 28
//
//Solution-Depth (Time-to-solve - Checked-Positions)
//138 moves (2.44 - 463,531)
//044112092034103111093074114031024042091084064053052021101062073121063113011054083014122102043013132033032041051082023134012104061081124131133094123071022072
//138 moves (17.84 - 4,839,407)
//093051032092074131014103064031091071104013041111053102112132063061072054052133023113082043134033044114042122124101024084021123081022083034062012121073011094
//153 moves (8.21 - 775,984)
//122102054114092084012023091124133113032022123082103101034052044011131083112051134104061064033014094021111063053062031072041024121081043073013093074071042132
//144 moves (6.83 - 876,787)
//093011091064043131071122084051074092061031062012081103032054134013014073133072041113052053121132044082042124111023083101033021123034112024094022063102104114
//136 moves (71.53 - 9,350,719)
//081054022072134033082024052064053012061013042093084124092122062031083121113023043074051114091014103044131063041102101133011111071073034123104112021132032094
//150 moves (4.39 - 424,990)
//012054062044022101102122074071041011133024043013093111082034114042131103061051063053094092072084132091112023113052032031134014123064104124121021081083033073
//155 moves (3.17 - 372,414)
//064083042011093052131072024091081082014041101071094073062123122114031061133034104103102043121134021054132033084013044063074032111113051124092023053022112012
//129 moves (2.05 - 464,401)
//131101034061073072044071082043092042094132014081051124083113121052063054012103062064032111134011074093053122102033013084031114091112104021133024022041123023
//129 moves (2.90 - 515,790)
//102072022064073114071042012053044133021051093124081054013112084101123132091134113041074094131104031023014061122062011103083082063121032111024092033052043034
//122 moves (10.45 - 2,919,732)
//112101053072123052051081023111131032124063062041044122054021024093103033071073082121022094083074133102104084114134042113011061031013091064034014043012132092
//Good Test Cases
//125 (3.75 - 630,741)
//042041044124023073111012123081104093031052051121094074061091083102043071132134113114131022103013062032101011014034054021112064092082133033072053084063024122
//156 (59.13 - 12,234,092)
//033083124102132032101121053041011063082022081051134043092112123042094052013024012131064111114021133073031034103104061122074072023084054044062093091071014113
//Impossible Game - No Solution (3.49 - 710,722)
//041023134124133071102114063072031033121092131043082044122083084064061051093094054073042013091104032101113062022103052034021132012074112111123011053024081014