• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:21
CEST 03:21
KST 10:21
  • 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 Energy13
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 Paris48Weekly Cups (Aug 11-17): MaxPax triples again!15
StarCraft 2
General
Team Liquid Map Contest #21 - Presented by Monster Energy Weekly Cups (August 25-31): Clem's Last Straw? Heaven's Balance Suggestions (roast me) Geoff 'iNcontroL' Robinson has passed away Speculation of future Wardii series
Tourneys
RSL: Revival, a new crowdfunded tournament series Maestros of The Game—$20k event w/ live finals in Paris 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 ASL20 General Discussion BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ BSL Polish World Championship 2025 20-21 September
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 Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile 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
US Politics Mega-thread Russo-Ukrainian War 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: 1191 users

Zerg Build Order optimizer. - Page 34

Forum Index > SC2 General
Post a Reply
Prev 1 32 33 34 35 36 58 Next
HanSoo
Profile Joined September 2010
United States17 Posts
Last Edited: 2010-10-25 07:00:32
October 25 2010 06:49 GMT
#661
I composed an entire post asking for a scripting engine so we could create better builds before remembering I have a background in Computer Science. So I implemented a feature that I felt is necessary for the program to be useful.

Currently the software is "dumb" in the sense that it does exactly what you tell it to. For the most part the fastest way to a certain attacking unit goal will be to exclude drones. Unfortunately in an economy based game these glass cannon build orders are not very good. You can set a minimum number of reasonable drones but why calculate this out for every build when you can have the computer do it?

I added a setting called, "Disable All-ins" which when enabled in order for a build to qualify it must have a certain number of drones based upon the final time of the build. The threshold is generous but it eliminates all of the terrible 6 drone + units builds when you can get 16 drones in just a few more seconds.

[edit] I don't think I was very clear in describing why this feature is better than simply entering in a certain number of drones. The entire point of the program is to optimize and find the best way to do a certain build. The problem is you might not know how fast something can be done. Your "target" is usually based upon a certain number of attacking units, but the number of drones expected will be variable based upon the amount of time the build takes. Basically your expected economy will vary depending on how early or late the game is.

In order to enter a certain number of drones as a prerequisite you must know around how long the build will take to know how much economy you should have. If your guess is too high you may potentially not discover really good builds. If your guess is too low then you'll start to get those crappy builds again. Either way doing it manually will require constant tweaking.


http://c0004251.cdn.cloudfiles.rackspacecloud.com/evolutionchamber-version-0017-hansoo.jar

Relevant source:

+ Show Spoiler +


EcSwingX.java
addCheck(settings, "Disable All-ins", new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
EcSettings.disableAllins = getTrue(e);
}
}).setSelected(EcSettings.disableAllins);
gridy++;

EcSettings.java
public static boolean disableAllins = false;

EcState.java
public boolean isSatisfied(EcState candidate)
{
...
if (EcSettings.disableAllins) {
int targetDrones = (candidate.seconds / 17 + 6) * 4 / 5;
if (candidate.drones < targetDrones)
return false;
}


Derin
Profile Joined August 2010
Ukraine6 Posts
Last Edited: 2010-10-25 06:56:00
October 25 2010 06:50 GMT
#662
Seems like the new version is worse.
I got the requirments from a replay, so I know it can be done I just wanted to optimize the build a little bit. The 0015 found a build in 30 mins, but 0017 spent an hour and still keeps failing by doing 10 or so hatcheries.
Meldryn
Profile Joined September 2010
United States7 Posts
October 25 2010 06:56 GMT
#663
On October 25 2010 15:49 HanSoo wrote:
I composed an entire post asking for a scripting engine so we could create better builds before remembering I have a background in Computer Science. So I implemented a feature that I felt is necessary for the program to be useful.

Currently the software is "dumb" in the sense that it does exactly what you tell it to. For the most part the fastest way to a certain attacking unit goal will be to exclude drones. Unfortunately in an economy based game these glass cannon build orders are not very good. You can set a minimum number of reasonable drones but why calculate this out for every build when you can have the computer do it?

I added a setting called, "Disable All-ins" which when enabled in order for a build to qualify it must have a certain number of drones based upon the final time of the build. The threshold is generous but it eliminates all of the terrible 6 drone + units builds when you can get 16 drones in just a few more seconds.

http://c0004251.cdn.cloudfiles.rackspacecloud.com/evolutionchamber-version-0017-hansoo.jar

Relevant source:

+ Show Spoiler +


EcSwingX.java
addCheck(settings, "Disable All-ins", new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
EcSettings.disableAllins = getTrue(e);
}
}).setSelected(EcSettings.disableAllins);
gridy++;

EcSettings.java
public static boolean disableAllins = false;

EcState.java
public boolean isSatisfied(EcState candidate)
{
...
if (EcSettings.disableAllins) {
int targetDrones = (candidate.seconds / 17 + 6) * 4 / 5;
if (candidate.drones < targetDrones)
return false;
}




This fix is okay, but in light of the new econ based optimizer being tested right now, possibly obsolete.
HanSoo
Profile Joined September 2010
United States17 Posts
October 25 2010 07:08 GMT
#664
On October 25 2010 15:56 Meldryn wrote:
This fix is okay, but in light of the new econ based optimizer being tested right now, possibly obsolete.


That sounds good. I haven't been following the entire thread and I'm not part of internal testing so I'm not aware of anything in the incubator.

I found the patch useful so I just thought I'd share it.
OverLulz
Profile Joined April 2010
Germany75 Posts
October 25 2010 07:17 GMT
#665
the new version with simple view is awesome! thanks to all of you for your great work. this tool makes lots of fun.
even though i didn't have any sucess with my 12 roach, tunnelling claws, burrow, glial reconstitution and missle+1 upgrade rush yet :D includes two roach warrens, epic!
BurningSera
Profile Blog Joined September 2010
Ireland19621 Posts
October 25 2010 07:43 GMT
#666
On October 25 2010 14:53 Subversion wrote:
Can we make a thread or something where we can put all the awesome builds this thing uncovers?



i concur! time for some sharing, people!! :D

is 2017, stop being lame, fuck's sakes. 'Can't wait for the rise of the cakes and humanity's last stand tbqh.'
Dionyseus
Profile Blog Joined December 2004
United States2068 Posts
October 25 2010 07:57 GMT
#667
On October 25 2010 15:50 Derin wrote:
Seems like the new version is worse.
I got the requirments from a replay, so I know it can be done I just wanted to optimize the build a little bit. The 0015 found a build in 30 mins, but 0017 spent an hour and still keeps failing by doing 10 or so hatcheries.


What requirements did you set?
9/5/10 P acct: NA D 10,683 651pts 69w56L http://sc2ranks.com/char/us/290365/LetoAtreides T acct: NA D 16,137 553pts 70w67L http://sc2ranks.com/char/us/1560008/Khrone Z: NA G 16,058 465pts 28w26L http://www.sc2ranks.com/us/1997354/Omnius
Derin
Profile Joined August 2010
Ukraine6 Posts
October 25 2010 08:22 GMT
#668
On October 25 2010 16:57 Dionyseus wrote:

What requirements did you set?

WP0: Metabolic Boost - 6:0
WP1: 2 queens, 3 zerglings, 2 spines and a hatchery - 7:0
WP2: 8 mutalisks - 10:0 (even tried 10:20 and 7 muta, cause it kept failing)
Final: 7zergling, 8 banelings, 2 mutalisks and +1 attack for flying units - 12:0
icezar
Profile Joined June 2010
Germany240 Posts
October 25 2010 09:46 GMT
#669
On October 25 2010 17:22 Derin wrote:
Show nested quote +
On October 25 2010 16:57 Dionyseus wrote:

What requirements did you set?

WP0: Metabolic Boost - 6:0
WP1: 2 queens, 3 zerglings, 2 spines and a hatchery - 7:0
WP2: 8 mutalisks - 10:0 (even tried 10:20 and 7 muta, cause it kept failing)
Final: 7zergling, 8 banelings, 2 mutalisks and +1 attack for flying units - 12:0


Thats because you asked it to do a "PERFECT" build.
By "PERFECT" i mean a build copied from a very good player, this builds are just perfect, nothing you can improve upon them, i did the same trying to improve on 5RR that is just much more easy then your build and it did not find a way to do it even after 8h.

This tool will find you "strange builds" for example if that guy gets 8 muta at once and atacks at 10 min mark, this tool might find you a build for 6 muta by 9min and you could do the attack at a time he is not expecting but in the next min you could not get another 2 muta out.

This tool will give you rush build like 7RR

This tool should give you econ builds but i do not know how good those will be on real game since someone will attack you before your build is done and then you are off.
Mushin
Profile Joined October 2010
United Kingdom15 Posts
Last Edited: 2010-10-25 11:38:23
October 25 2010 11:37 GMT
#670
If anyone has requests for builds, please let me know. I have a few cores I can use for this purpose. I'll post the results up here.

This is the 7 roach build with 16 drones, which is finished at 4:37.
Ctuchik
Profile Joined October 2010
Sweden91 Posts
October 25 2010 12:46 GMT
#671
I'd like to see:

WP: 2 lings before 5min
Final: 44 drones, 3 queens, 3 roaches and metabolic boost. (2 hatches as well I guess)

Turn of extractor trick and pull drones from gas.

Best I've got is 6.31 with a 13pool 18 hatch.
http://twitter.com/sc2statistics
azzu
Profile Joined August 2010
Germany141 Posts
October 25 2010 13:27 GMT
#672
On October 25 2010 17:22 Derin wrote:
Show nested quote +
On October 25 2010 16:57 Dionyseus wrote:

What requirements did you set?

WP0: Metabolic Boost - 6:0
WP1: 2 queens, 3 zerglings, 2 spines and a hatchery - 7:0
WP2: 8 mutalisks - 10:0 (even tried 10:20 and 7 muta, cause it kept failing)
Final: 7zergling, 8 banelings, 2 mutalisks and +1 attack for flying units - 12:0


after 20 minutes, i got a build that satisfies all the waypoints and ends at 10:30
icezar
Profile Joined June 2010
Germany240 Posts
October 25 2010 13:39 GMT
#673
On October 25 2010 22:27 azzu wrote:
Show nested quote +
On October 25 2010 17:22 Derin wrote:
On October 25 2010 16:57 Dionyseus wrote:

What requirements did you set?

WP0: Metabolic Boost - 6:0
WP1: 2 queens, 3 zerglings, 2 spines and a hatchery - 7:0
WP2: 8 mutalisks - 10:0 (even tried 10:20 and 7 muta, cause it kept failing)
Final: 7zergling, 8 banelings, 2 mutalisks and +1 attack for flying units - 12:0


after 20 minutes, i got a build that satisfies all the waypoints and ends at 10:30


Can you please post it?

I think with 0.17 the new scoring system is worse then before. Now it tends to add another SP or more drones even if it finishes later :-( I do think time should be above all. The time difference was big also, from 4:49 to 5:06
Ctuchik
Profile Joined October 2010
Sweden91 Posts
October 25 2010 14:27 GMT
#674
On October 25 2010 21:46 Ctuchik wrote:
I'd like to see:

WP: 2 lings before 5min
Final: 44 drones, 3 queens, 3 roaches and metabolic boost. (2 hatches as well I guess)

Turn of extractor trick and pull drones from gas.

Best I've got is 6.31 with a 13pool 18 hatch.


Just got a new one, 14 hatch 13 pool. 6:27. 42 million games played. Queens at 17 and 21.
http://twitter.com/sc2statistics
OverLulz
Profile Joined April 2010
Germany75 Posts
October 25 2010 14:31 GMT
#675
got a question: when it says

3 Hatch
1 Lair

How many bases are actually there? Does it mean 3 Hatches, one of them is a lair? Or 3 Hatches and 1 Lair, so 4 bases?
And how many bases are mining? I read somewhere that it accounts for two mining bases and the other hatches are only there for larva?
Bumblebees
Profile Joined August 2010
United States328 Posts
Last Edited: 2010-10-25 14:36:59
October 25 2010 14:35 GMT
#676
On October 25 2010 15:49 HanSoo wrote:
I composed an entire post asking for a scripting engine so we could create better builds before remembering I have a background in Computer Science. So I implemented a feature that I felt is necessary for the program to be useful.

Currently the software is "dumb" in the sense that it does exactly what you tell it to. For the most part the fastest way to a certain attacking unit goal will be to exclude drones. Unfortunately in an economy based game these glass cannon build orders are not very good. You can set a minimum number of reasonable drones but why calculate this out for every build when you can have the computer do it?

I added a setting called, "Disable All-ins" which when enabled in order for a build to qualify it must have a certain number of drones based upon the final time of the build. The threshold is generous but it eliminates all of the terrible 6 drone + units builds when you can get 16 drones in just a few more seconds.

[edit] I don't think I was very clear in describing why this feature is better than simply entering in a certain number of drones. The entire point of the program is to optimize and find the best way to do a certain build. The problem is you might not know how fast something can be done. Your "target" is usually based upon a certain number of attacking units, but the number of drones expected will be variable based upon the amount of time the build takes. Basically your expected economy will vary depending on how early or late the game is.

In order to enter a certain number of drones as a prerequisite you must know around how long the build will take to know how much economy you should have. If your guess is too high you may potentially not discover really good builds. If your guess is too low then you'll start to get those crappy builds again. Either way doing it manually will require constant tweaking.


http://c0004251.cdn.cloudfiles.rackspacecloud.com/evolutionchamber-version-0017-hansoo.jar

Relevant source:

+ Show Spoiler +


EcSwingX.java
addCheck(settings, "Disable All-ins", new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
EcSettings.disableAllins = getTrue(e);
}
}).setSelected(EcSettings.disableAllins);
gridy++;

EcSettings.java
public static boolean disableAllins = false;

EcState.java
public boolean isSatisfied(EcState candidate)
{
...
if (EcSettings.disableAllins) {
int targetDrones = (candidate.seconds / 17 + 6) * 4 / 5;
if (candidate.drones < targetDrones)
return false;
}





I want to point out that turning on "disable all-ins" runs significantly faster.

I'm averaging about 16-18K games per second with it turned on. The current version 17 runs at ~2K-5K games per second with the same settings.

Nearly every build I've tried it's been able to get the build out at the same time as the current version except disable all-ins ends up with 2+ more drones.

I feel this is an exceptional improvement.
Bumblebees
Profile Joined August 2010
United States328 Posts
October 25 2010 14:45 GMT
#677
On October 25 2010 23:31 OverLulz wrote:
got a question: when it says

3 Hatch
1 Lair

How many bases are actually there? Does it mean 3 Hatches, one of them is a lair? Or 3 Hatches and 1 Lair, so 4 bases?
And how many bases are mining? I read somewhere that it accounts for two mining bases and the other hatches are only there for larva?


4 bases, it assumes all are placed near minerals.

You can determine if those bases need to be near minerals pretty easily.

First divide the number of extractors and divide by 2. Round up and that's the minimum number of hatcheries near resources required. To determine the actual number, for every extractor, subtract 3 drones from the total drone count. Take the remaining drones and divide by 16. Round up the result and that's how many bases need to be near minerals.

That means that 47 drones with 5 extractors needs 3 hatcheries near minerals. ceil(5/2) = 3. Number of drones on minerals is 32 which is 2 bases when divided by 16.

48 drones with 4 extractors is 2 bases. 48 drones with 1 extractor is 3 bases. etc...
OverLulz
Profile Joined April 2010
Germany75 Posts
October 25 2010 14:56 GMT
#678
@bumblebees: thank you for your explanation.

In my case it says the following (final output)
+ Show Spoiler +
---Final Output---
At time: 9:36
Minerals: 736 Gas: 218 Supply: 112/112
Drones: 54
Overlords: 13
Queens: 2
Zerglings: 8
Roaches: 25
Hatcheries: 3
Lairs: 1
Gas Extractors: 4
Spawning Pools: 1
Baneling Nest: 1
Roach Warrens: 1
Evolution Chambers: 1
Armor +1
Metabolic Boost
Glial Reconstitution
Centrifugal Hooks


Doing your calculation I come up the the following result:
4 extractors means 2 bases in gas
54 - 12 = 42
42/16=2.6.
42 drones on minearls means 3 bases.

But it still adds one more hatchery. It calculated 3 hatches and a lair. (69172K games played.)
azzu
Profile Joined August 2010
Germany141 Posts
October 25 2010 15:09 GMT
#679
On October 25 2010 22:39 icezar wrote:
Can you please post it?


no didn't care enough to think about saving it XD
blackodd
Profile Joined April 2010
Sweden451 Posts
October 25 2010 17:12 GMT
#680
This has so much potential, wow
For I am the Queen of Blades. And none shall ever dispute my rule, again...
Prev 1 32 33 34 35 36 58 Next
Please log in or register to reply.
Live Events Refresh
Next event in 1h 39m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SpeCial 227
Vindicta 47
RuFF_SC2 40
PattyMac 24
StarCraft: Brood War
Britney 7403
Artosis 846
Aegong 54
sSak 51
NaDa 29
Dota 2
monkeys_forever699
NeuroSwarm78
Super Smash Bros
hungrybox533
C9.Mang0328
Other Games
summit1g10319
shahzam411
WinterStarcraft365
FrodaN329
420jenkins301
ViBE176
Maynarde154
Mew2King42
Nathanias24
ROOTCatZ20
fpsfer 1
Organizations
Other Games
BasetradeTV23
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• davetesta42
• OhrlRock 2
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• Airneanach5
• iopq 1
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota22334
Counter-Strike
• imaqtpie677
• Shiphtur159
Other Games
• Scarra977
Upcoming Events
OSC
1h 39m
MaNa vs SHIN
SKillous vs ShoWTimE
Bunny vs TBD
Cham vs TBD
RSL Revival
8h 39m
Reynor vs Astrea
Classic vs sOs
Maestros of the Game
15h 39m
Serral vs Ryung
ByuN vs Zoun
BSL Team Wars
17h 39m
Team Bonyth vs Team Dewalt
CranKy Ducklings
1d 8h
RSL Revival
1d 8h
GuMiho vs Cham
ByuN vs TriGGeR
Cosmonarchy
1d 12h
TriGGeR vs YoungYakov
YoungYakov vs HonMonO
HonMonO vs TriGGeR
Maestros of the Game
1d 15h
Solar vs Bunny
Clem vs Rogue
[BSL 2025] Weekly
1d 16h
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)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

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
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.