• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:32
CEST 22:32
KST 05:32
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Maestros of the Game: Week 1/Play-in Preview9[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy12
Community News
LiuLi Cup - September 2025 Tournaments2Weekly Cups (August 25-31): Clem's Last Straw?39Weekly Cups (Aug 18-24): herO dethrones MaxPax6Maestros of The Game—$20k event w/ live finals in Paris47Weekly Cups (Aug 11-17): MaxPax triples again!15
StarCraft 2
General
Weekly Cups (August 25-31): Clem's Last Straw? Team Liquid Map Contest #21 - Presented by Monster Energy Heaven's Balance Suggestions (roast me) Geoff 'iNcontroL' Robinson has passed away Speculation of future Wardii series
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series LiuLi Cup - September 2025 Tournaments Sea Duckling Open (Global, Bronze-Diamond) Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
External Content
Mutation # 489 Bannable Offense Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies
Brood War
General
Pros React To: herO's Baffling Game BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion BSL Polish World Championship 2025 20-21 September ASL20 General Discussion
Tourneys
Is there English video for group selection for ASL Small VOD Thread 2.0 [Megathread] Daily Proleagues [ASL20] Ro24 Group F
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
General RTS Discussion Thread Nintendo Switch Thread Path of Exile Stormgate/Frost Giant Megathread Warcraft III: The Frozen Throne
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread YouTube Thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
How Culture and Conflict Imp…
TrAiDoS
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
INDEPENDIENTE LA CTM
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1856 users

Day 3: A word on Brute Force

Blogs > Revilo
Post a Reply
Revilo
Profile Blog Joined October 2010
Germany23 Posts
October 23 2010 14:52 GMT
#1
I had a number of people suggest brute force as a viable option in solving these short build order problems. I was skeptical, since the number of possible moves in a build order quickly explode in complexity. However, I was not content just thinking about it and so I tried it out for myself. The results are not too surprising...

I based my algorithm on the game as much as possible. This means that I run a simulation of the game for each build order with a minimum time unit of 1 game second. This allows me to bound the searches I make for optimal build orders by declaring my goal units and a maximum time limit for them to be reached. Since I know how long a 6-pool should take to be optimal, I can set a limit below this by 1 second and let the algorithm compute all elements in the search tree as a benchmark for the worst case. Sadly this number becomes quite staggering as the algorithm goes on.

Before you hit the 18 second mark the only things that are really possible are drones, spawning pool, overlords, hatcheries, extractors, moving drones to scout... So there are not that many options but nevertheless quite a few. However, as soon as you add a spawning pool or any other tech units this number of options grows to 20, then 30, and finally 62. This means that at each leaf of the tree, a set of 62 new actions have to be checked for validity and whether they achieve the goal. Of course I am not doing blind brute force (that would be even more horrendous), instead I only allow a small set of options based on the currently available technology to the Zerg simulation. Still, a run of the algorithm over all possible moves up to game time 10 seconds takes 1000ms to calculate. Setting the limit to 16 game seconds takes over 26000ms, and going beyond 30 game seconds is too long to wait for.

In conclusion:
Don't use brute force for this problem unless you can narrow down your tech A LOT! By this I mean, if you want to get a build for X number of zerglings, make sure you only allow the algorithm to use direct paths of tech (drones, overlords, spawning pool, queen) and ditch anything that you know will not help (extractors, roach warren, etc...)

*****
Looking for practice partners on EU! Message me if you like :) "I dont wtach porn anymore, I watch Socke" - Rotterdam
Weasel-
Profile Joined June 2009
Canada1556 Posts
October 23 2010 15:50 GMT
#2
You don't have to check for something every second, I think it would be easier for your algorithm to simply order all of the things it can currently make and just make those things in some specific order whenever it has the cash to afford them.
gods_basement
Profile Blog Joined August 2010
United States305 Posts
October 23 2010 17:38 GMT
#3
On October 24 2010 00:50 Weasel- wrote:
You don't have to check for something every second, I think it would be easier for your algorithm to simply order all of the things it can currently make and just make those things in some specific order whenever it has the cash to afford them.


you're right. you should make your brute force build order optimizer to use build orders. i cant believe anyone didnt try this previously
(TT~TT)
Revilo
Profile Blog Joined October 2010
Germany23 Posts
October 23 2010 21:13 GMT
#4
The whole idea behind this is to set some target composition of units, say... 6 zerglings, and have the algorithm spit out the shortest way to get to that (in other words, a build order that is as fast as possible to get to 6 zerglings). And I do only do a set number of possible moves at the end of each build order. However, my simulator that checks how long each of those build orders takes in game time has to evaluate on some scale. That scale is the game second. Thats why the algorithm only starts getting slow beyond 18 game seconds (since it takes 17 game seconds to spawn a drone). The first move can only be one of maybe 6 or 7 moves. So here the search space is relatively small. Now once you reach the end of simulation for those 6 or 7 moves, each can now append another 6 or 7 (or more if tech has been unlocked) moves. This makes 36 to 49 buildorders to evaluate. A lot of these are illegal ones, and these I already filter out. However, once you hit the next level down you are already at 200 to 350 build orders. And that, although I have only 3 things building in the build orders.

As I stated before, you can make the algorithm more intelligent to speed things up by removing possible moves based on logic. However, you run the risk of excluding a possibility for a better solution in doing so and it no longer is "truly" brute force. This was only an experiment, but it has shown the core stats of the problem at hand. I will be revisiting Genetic Algorithms with more determination, since it seems the search space truly is IMMENSE!

I hope to release some code soon too Hold on tight!
Looking for practice partners on EU! Message me if you like :) "I dont wtach porn anymore, I watch Socke" - Rotterdam
Please log in or register to reply.
Live Events Refresh
Maestros of the Game
17:00
Group Stage - Group A
Classic vs TriGGeR
Reynor vs SHIN
ComeBackTV 1322
SteadfastSC526
IndyStarCraft 184
CranKy Ducklings178
EnkiAlexander 63
Rex49
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SteadfastSC 526
IndyStarCraft 184
BRAT_OK 90
ProTech87
JuggernautJason81
Rex 49
StarCraft: Brood War
Britney 22140
EffOrt 1027
Larva 332
hero 231
Dewaltoss 124
TY 124
firebathero 122
Bonyth 93
sSak 64
Aegong 30
[ Show more ]
NaDa 18
Dota 2
The International24585
420jenkins80
monkeys_forever52
Counter-Strike
Stewie2K435
Heroes of the Storm
Liquid`Hasu347
Other Games
summit1g3621
FrodaN1216
fl0m524
mouzStarbuck300
ToD196
C9.Mang0155
SortOf139
Livibee119
Mew2King45
PPMD26
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• musti20045 35
• davetesta15
• StrangeGG 9
• Reevou 6
• IndyKCrew
• AfreecaTV YouTube
• sooper7s
• intothetv
• Kozan
• LaughNgamezSOOP
• Migwel
StarCraft: Brood War
• Michael_bg 5
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21452
League of Legends
• TFBlade923
Counter-Strike
• imaqtpie1034
• Shiphtur175
Upcoming Events
OSC
6h 28m
MaNa vs SHIN
SKillous vs ShoWTimE
Bunny vs TBD
Cham vs TBD
RSL Revival
13h 28m
Reynor vs Astrea
Classic vs sOs
Maestros of the Game
20h 28m
Serral vs Ryung
ByuN vs Zoun
BSL Team Wars
22h 28m
Team Bonyth vs Team Dewalt
CranKy Ducklings
1d 13h
RSL Revival
1d 13h
GuMiho vs Cham
ByuN vs TriGGeR
Cosmonarchy
1d 17h
TriGGeR vs YoungYakov
YoungYakov vs HonMonO
HonMonO vs TriGGeR
Maestros of the Game
1d 20h
Solar vs Bunny
Clem vs Rogue
[BSL 2025] Weekly
1d 21h
RSL Revival
2 days
Cure vs Bunny
Creator vs Zoun
[ Show More ]
Maestros of the Game
2 days
Maru vs Lambo
herO vs ShoWTimE
BSL Team Wars
2 days
Team Hawk vs Team Sziky
Sparkling Tuna Cup
3 days
Monday Night Weeklies
3 days
The PondCast
6 days
Liquipedia Results

Completed

CSL Season 18: Qualifier 2
SEL Season 2 Championship
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
CSL 2025 AUTUMN (S18)
RSL Revival: Season 2
Maestros of the Game
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
BLAST.tv Austin Major 2025

Upcoming

LASL Season 20
2025 Chongqing Offline CUP
BSL Polish World Championship 2025 – Warsaw LAN
BSL Season 21
BSL 21 Team A
Chzzk MurlocKing SC1 vs SC2 Cup #2
EC S1
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.