• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:34
CET 02:34
KST 10:34
  • 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
Intel X Team Liquid Seoul event: Showmatches and Meet the Pros9[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3
Community News
Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win52025 RSL Offline Finals Dates + Ticket Sales!10BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION1Crank Gathers Season 2: SC II Pro Teams10Merivale 8 Open - LAN - Stellar Fest4
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" Intel X Team Liquid Seoul event: Showmatches and Meet the Pros Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win Weekly Cups (Oct 13-19): Clem Goes for Four DreamHack Open 2013 revealed
Tourneys
Kirktown Chat Brawl #9 $50 8:30PM EST 2025 RSL Offline Finals Dates + Ticket Sales! SC4ALL $6,000 Open LAN in Philadelphia Merivale 8 Open - LAN - Stellar Fest Crank Gathers Season 2: SC II Pro Teams
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment
Brood War
General
SnOw's ASL S20 Finals Review Ladder Map Matchup Stats BW General Discussion [ASL20] Ask the mapmakers — Drop your questions BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[ASL20] Grand Finals Small VOD Thread 2.0 The Casual Games of the Week Thread BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION
Strategy
How to stay on top of macro? Current Meta PvZ map balance Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Dawn of War IV Beyond All Reason Stormgate/Frost Giant Megathread Path of Exile General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine The Big Programming Thread YouTube Thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread Korean Music Discussion Series you have seen recently...
Sports
Formula 1 Discussion MLB/Baseball 2023 2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 NBA General Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Career Paths and Skills for …
TrAiDoS
KPDH "Golden" as Squid Game…
Peanutsc
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1520 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
Replay Cast
23:00
PiGosaur Cup #54
CranKy Ducklings110
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft429
Nathanias 96
RuFF_SC2 92
Vindicta 47
Livibee 30
StarCraft: Brood War
NaDa 28
Dota 2
monkeys_forever533
capcasts205
PGG 153
League of Legends
Cuddl3bear4
Counter-Strike
adren_tv158
Super Smash Bros
C9.Mang0376
Heroes of the Storm
Khaldor120
Other Games
summit1g10111
WinterStarcraft278
Skadoodle89
Organizations
Other Games
gamesdonequick1482
StarCraft: Brood War
UltimateBattle 7
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• davetesta25
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota21622
League of Legends
• Doublelift3833
• Stunt140
• Hupsaiya55
Upcoming Events
Epic.LAN
10h 26m
BSL Team A[vengers]
12h 26m
Dewalt vs ZeLoT
UltrA vs ZeLoT
LAN Event
12h 26m
BSL 21
17h 26m
BSL Team A[vengers]
1d 12h
Cross vs Sobenz
Sziky vs IcaruS
LAN Event
1d 13h
BSL 21
1d 17h
Replay Cast
2 days
Wardi Open
2 days
Monday Night Weeklies
2 days
[ Show More ]
Replay Cast
2 days
Sparkling Tuna Cup
3 days
Replay Cast
4 days
The PondCast
5 days
Liquipedia Results

Completed

CSL 2025 AUTUMN (S18)
CranK Gathers Season 2: SC II Pro Teams
Eternal Conflict S1

Ongoing

BSL 21 Points
BSL 21 Team A
C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
SC4ALL: Brood War
SC4ALL: StarCraft II
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025

Upcoming

YSL S2
BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
Stellar Fest
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 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.