• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:57
CEST 12:57
KST 19:57
  • 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
Serral wins Maestros of the Game 213ByuL, and the Limitations of Standard Play3Team Liquid Map Contest #22: Results and Winners7Code S Season 2 (2026): RO4 and Finals Preview12TL.net Map Contest #22 - Voting & Ladder Map Selection7
Community News
MC vs IdrA, Boxer vs Nal_rA to be Legacy Matches @ BlizzCon315.0.16 Hotfix (June 30) - Balance + Bug Fixes37Weekly Cups (June 22-28): Zergs thrive in new patch5[TLMC] Summer 2026 Ladder Map Rotation05.0.16 patch for SC2 goes live (8 worker start)99
StarCraft 2
General
IP For new Brazil servers for NA Players 5.0.16 Hotfix (June 30) - Balance + Bug Fixes Serral wins Maestros of the Game 2 Weekly Cups (June 22-28): Zergs thrive in new patch MC vs IdrA, Boxer vs Nal_rA to be Legacy Matches @ BlizzCon
Tourneys
Vespene Cup #1 — $300+ USD, July 10 HomeStory Cup 29 Douyu Cup 2026: $20,000 Legends Event (June 26-28) Crank Gathers Season 4: BW vs SC2 Team League RSL Revival: Season 6 - Qualifiers and Main Event
Strategy
[G] Having the right mentality to improve
Custom Maps
New Map Maker - Looking for Advice - Love or Hate Work In Progress Melee Maps [D]RTS in all its shapes and glory <3
External Content
The PondCast: SC2 News & Results Mutation # 532 Nuclear Family Mutation # 531 Experimental Artillery Mutation # 530 One For All
Brood War
General
ASL 22 Proposed Map Pool Farewell Beloved Starcraft (Youtube Videos) BW General Discussion FlaShFTW vs A.Alm Grudge Match Event BGH Auto Balance -> http://bghmmr.eu/
Tourneys
Escore Tournament StarCraft Season 2 The Casual Games of the Week Thread [Megathread] Daily Proleagues [ASL21] Grand Finals
Strategy
Simple Questions, Simple Answers Creating a full chart of Zerg builds Relatively freeroll strategies Why doesn't anyone use restoration?
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV Summer Games Done Quick 2026! ZeroSpace at Steam NextFest - Last free demo
Dota 2
Looking for a Dota Mentor Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
NeO.D_StephenKing vs This Guy From 1 Million Dance TL Mafia Community Thread TL Mafia Power Rank Vanilla Mini Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Canadian Politics Mega-thread The Games Industry And ATVI Men's Fashion Thread
Fan Clubs
The HerO Fan Club! The herO Fan Club!
Media & Entertainment
Movie Discussion! Series you have seen recently... [Req][Books] Good Fantasy/SciFi books [TV/BOOK] *SPOILERS* Game of Thrones Discussion
Sports
Formula 1 Discussion 2024 - 2026 Football Thread McBoner: A hockey love story TeamLiquid Health and Fitness Initiative For 2023 Cricket [SPORT]
World Cup 2022
Tech Support
How to clean a TTe Thermaltake keyboard? Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Listen To The Coaches!
TrAiDoS
An Exploration of th…
waywardstrategy
I'm an arrogant trash talke…
FlaShFTW
Gauntlet SC2: A Retrospectiv…
Ctone23
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Evil Gacha Games and the…
ffswowsucks
Customize Sidebar...

Website Feedback

Closed Threads



Active: 7352 users

The Big Programming Thread - Page 944

Forum Index > General Forum
Post a Reply
Prev 1 942 943 944 945 946 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Manit0u
Profile Blog Joined August 2004
Poland17777 Posts
February 08 2018 13:31 GMT
#18861
test 'should not chosen default pipeline with related columns' do


I really hate stumbling upon test cases written by people with sub-par english proficiency. Makes it hard to evaluate.
Time is precious. Waste it wisely.
Silvanel
Profile Blog Joined March 2003
Poland4768 Posts
February 08 2018 14:55 GMT
#18862
The access from our testservers to certain type of device we are testing was cut off after one guy in certain Asian country (which is also a subcontinent) did something very bad. I wont go into details but as a result IT decided to cut access from all servers with traffic above some treshhold to that type of devices. Which of course included our servers. Took us three days to figure out what happened and whitelist our servers.

Be happy when its only spelling.
Pathetic Greta hater.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
February 08 2018 23:09 GMT
#18863
On February 08 2018 18:33 WolfintheSheep wrote:
Show nested quote +
On February 08 2018 11:41 WarSame wrote:
Well I figure if I can do this I can remove a substantial amount of code. Instead of opening, using, then closing the adapter I can just have it open the whole time, and use it when I want it. This means that I can make inline calls to the DB without either wrapping it in a pointless function or cluttering up my code. I'm wondering whether my proposal is bad design, though.

If I recall, you've asked similar questions before, and the general theme seems to be that you're putting a lot of undue emphasis on "decluttering" your code. Clean code should come naturally no matter what you're programming, and hacking functionality together is the opposite of that.

Long-short, always close your DB adapters. There may be niche cases where you will want to leave a connection open, but you should be able to clearly say why that's necessary from a system perspective.

Also, when you say "without...wrapping it in a pointless function", I hope you're just wording that poorly, because encapsulation is a fundamental aspect of OOP.

Yeah, I'm trying to learn how to code cleanly through this project, so sometimes I'm definitely going over the line.

By "wrapping it" I meant pointless functions like this:


boolean isAuthentic(String email, char[] password) throws NoSuchAlgorithmException {
AccountDbAdapter db = new AccountDbAdapter(getContext());
boolean isAuthentic = db.isAuthentic(email, password);
db.close();

return isAuthentic;
}


I would like to replace that with a single, in-line function call, maybe like:


boolean isAuthentic = Session.getAccountDbAdapter().isAuthentic(email, password)


Since I have functions like this fairly often it would save quite a lot of unnecessary code.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Manit0u
Profile Blog Joined August 2004
Poland17777 Posts
Last Edited: 2018-02-09 14:48:15
February 09 2018 08:55 GMT
#18864
https://github.com/kelseyhightower/nocode

https://github.com/koudelka/visualixir

amazing projects
Time is precious. Waste it wisely.
Silvanel
Profile Blog Joined March 2003
Poland4768 Posts
Last Edited: 2018-02-09 17:37:19
February 09 2018 17:32 GMT
#18865
Yeah. Nocode is super secure and efficient. Its vary hard to get client to accept it though. No idea why.
Pathetic Greta hater.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2018-02-09 18:07:08
February 09 2018 17:53 GMT
#18866
Is it possible to tell from analysis of runtime and/or function calls if asymptotic complexity is polynomial, rather than exponential? By exponential I mean including 2^1.00001, for example.

Or to come to such a conclusion would that require mathematical analysis of the code ?


Also, does anyone have any experience with gnu gmp or redis?
Lmui
Profile Joined November 2010
Canada6223 Posts
Last Edited: 2018-02-09 18:09:33
February 09 2018 18:08 GMT
#18867
On February 10 2018 02:53 travis wrote:
Is it possible to tell from analysis of runtime and/or function calls if asymptotic complexity is polynomial, rather than exponential? By exponential I mean including 2^1.00001, for example.

Or to come to such a conclusion would that require mathematical analysis of the code ?


Well with asymptotically large amounts of input size, you can get a dataset of runtimes for instance which will show you that it's exponential, since regardless of what the constants are, n^c < c^n.

In practical terms though, c^(1.00000000000000000001n) for n = 10^1000000 for instance far outstrips (n*10^1000000)^c for c being any reasonable number

Function calls, no, runtime, cpu cycles, or some other low level iteration metric yes, as long as it scales in some way with the input N
Simberto
Profile Blog Joined July 2010
Germany11908 Posts
February 09 2018 18:21 GMT
#18868
If you can generate enough data which is good enough, you should be able to simply take those data points, and fit a curve onto them. You can then compare whether a polynomial curve or an exponential curve fits the data better.

It should be irrelevant where those data points are coming from, unless they are laden with too much uncertainty to produce a valid answer.
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
February 09 2018 18:32 GMT
#18869
On February 09 2018 08:09 WarSame wrote:
Show nested quote +
On February 08 2018 18:33 WolfintheSheep wrote:
On February 08 2018 11:41 WarSame wrote:
Well I figure if I can do this I can remove a substantial amount of code. Instead of opening, using, then closing the adapter I can just have it open the whole time, and use it when I want it. This means that I can make inline calls to the DB without either wrapping it in a pointless function or cluttering up my code. I'm wondering whether my proposal is bad design, though.

If I recall, you've asked similar questions before, and the general theme seems to be that you're putting a lot of undue emphasis on "decluttering" your code. Clean code should come naturally no matter what you're programming, and hacking functionality together is the opposite of that.

Long-short, always close your DB adapters. There may be niche cases where you will want to leave a connection open, but you should be able to clearly say why that's necessary from a system perspective.

Also, when you say "without...wrapping it in a pointless function", I hope you're just wording that poorly, because encapsulation is a fundamental aspect of OOP.

Yeah, I'm trying to learn how to code cleanly through this project, so sometimes I'm definitely going over the line.

By "wrapping it" I meant pointless functions like this:


boolean isAuthentic(String email, char[] password) throws NoSuchAlgorithmException {
AccountDbAdapter db = new AccountDbAdapter(getContext());
boolean isAuthentic = db.isAuthentic(email, password);
db.close();

return isAuthentic;
}


I would like to replace that with a single, in-line function call, maybe like:


boolean isAuthentic = Session.getAccountDbAdapter().isAuthentic(email, password)


Since I have functions like this fairly often it would save quite a lot of unnecessary code.

So, why do you feel that code is unnecessary?
Average means I'm better than half of you.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
February 09 2018 19:28 GMT
#18870
On February 10 2018 03:32 WolfintheSheep wrote:
Show nested quote +
On February 09 2018 08:09 WarSame wrote:
On February 08 2018 18:33 WolfintheSheep wrote:
On February 08 2018 11:41 WarSame wrote:
Well I figure if I can do this I can remove a substantial amount of code. Instead of opening, using, then closing the adapter I can just have it open the whole time, and use it when I want it. This means that I can make inline calls to the DB without either wrapping it in a pointless function or cluttering up my code. I'm wondering whether my proposal is bad design, though.

If I recall, you've asked similar questions before, and the general theme seems to be that you're putting a lot of undue emphasis on "decluttering" your code. Clean code should come naturally no matter what you're programming, and hacking functionality together is the opposite of that.

Long-short, always close your DB adapters. There may be niche cases where you will want to leave a connection open, but you should be able to clearly say why that's necessary from a system perspective.

Also, when you say "without...wrapping it in a pointless function", I hope you're just wording that poorly, because encapsulation is a fundamental aspect of OOP.

Yeah, I'm trying to learn how to code cleanly through this project, so sometimes I'm definitely going over the line.

By "wrapping it" I meant pointless functions like this:


boolean isAuthentic(String email, char[] password) throws NoSuchAlgorithmException {
AccountDbAdapter db = new AccountDbAdapter(getContext());
boolean isAuthentic = db.isAuthentic(email, password);
db.close();

return isAuthentic;
}


I would like to replace that with a single, in-line function call, maybe like:


boolean isAuthentic = Session.getAccountDbAdapter().isAuthentic(email, password)


Since I have functions like this fairly often it would save quite a lot of unnecessary code.

So, why do you feel that code is unnecessary?

It seems like my code is repeating itself, making the intentions of the code less clear.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Excludos
Profile Blog Joined April 2010
Norway8266 Posts
February 09 2018 19:33 GMT
#18871
On February 10 2018 04:28 WarSame wrote:
Show nested quote +
On February 10 2018 03:32 WolfintheSheep wrote:
On February 09 2018 08:09 WarSame wrote:
On February 08 2018 18:33 WolfintheSheep wrote:
On February 08 2018 11:41 WarSame wrote:
Well I figure if I can do this I can remove a substantial amount of code. Instead of opening, using, then closing the adapter I can just have it open the whole time, and use it when I want it. This means that I can make inline calls to the DB without either wrapping it in a pointless function or cluttering up my code. I'm wondering whether my proposal is bad design, though.

If I recall, you've asked similar questions before, and the general theme seems to be that you're putting a lot of undue emphasis on "decluttering" your code. Clean code should come naturally no matter what you're programming, and hacking functionality together is the opposite of that.

Long-short, always close your DB adapters. There may be niche cases where you will want to leave a connection open, but you should be able to clearly say why that's necessary from a system perspective.

Also, when you say "without...wrapping it in a pointless function", I hope you're just wording that poorly, because encapsulation is a fundamental aspect of OOP.

Yeah, I'm trying to learn how to code cleanly through this project, so sometimes I'm definitely going over the line.

By "wrapping it" I meant pointless functions like this:


boolean isAuthentic(String email, char[] password) throws NoSuchAlgorithmException {
AccountDbAdapter db = new AccountDbAdapter(getContext());
boolean isAuthentic = db.isAuthentic(email, password);
db.close();

return isAuthentic;
}


I would like to replace that with a single, in-line function call, maybe like:


boolean isAuthentic = Session.getAccountDbAdapter().isAuthentic(email, password)


Since I have functions like this fairly often it would save quite a lot of unnecessary code.

So, why do you feel that code is unnecessary?

It seems like my code is repeating itself, making the intentions of the code less clear.


This is sensible and pretty core to having clean and proper code which can be easily read and fixed. At the best of your ability, try not to repeat any lines of code.

Think about it this way: If you do a mistake in your often repeated code, you now have to go back and fix every occurance of it. If you set it aside and repeat the call instead, you only have to fix it once.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2018-02-10 00:36:46
February 10 2018 00:33 GMT
#18872
So, I still have been going hard on working to find a reasonable exact solver for the TSP, and even if I haven't solved it, I have improved my results to a point where I feel they are pretty impressive.

I tested it 1000 times vs a brute force solver at n=9 and it matched the brute force all 1000 times, I tested it 100 times vs a good greedy solver I found online for n = 20 and it beat or tied (almost always beat) the greedy solver 100/100 times.

I tested it on two of the data sets here http://www.math.uwaterloo.ca/tsp/world/countries.html, n=29 and n=39. It solved both of those, in 35 seconds and 50 seconds.

For benchmarking on randomly generated matrices (which are more difficult than the typical matrices I can find online based on real data), I see times like this (some overhead probably presented by the profiler)

(these are averages, there is quite a bit of variance)
@n

11: .1 seconds (compared with the roughly ~1 minute of brute force)
12: .17 sec
13: .26 sec
14: .42 sec
15: .7 sec
16: 1.1 sec
24: 13 secs
32 55 secs

this is on my desktop pc, which is probably average in terms of speed. it's in python, if I rewrote it in C (and if i was good enough to rewrite it in C), I could probably make it go much much faster.

I of course need to test bigger datasets, but even if it messes up somewhere I am still very proud of what I have accomplished doing this stuff (my life has revolved around it for the last 3 months... ive been obsessed).

I do think I still have a couple ways in mind to make it perform faster and lose less memory (it uses a lot). Right now it will soon approach the point where my 6gb of ram is not enough.
Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
Last Edited: 2018-02-10 20:38:50
February 10 2018 05:36 GMT
#18873
On February 10 2018 09:33 travis wrote:
So, I still have been going hard on working to find a reasonable exact solver for the TSP, and even if I haven't solved it, I have improved my results to a point where I feel they are pretty impressive.

I tested it 1000 times vs a brute force solver at n=9 and it matched the brute force all 1000 times, I tested it 100 times vs a good greedy solver I found online for n = 20 and it beat or tied (almost always beat) the greedy solver 100/100 times.

I tested it on two of the data sets here http://www.math.uwaterloo.ca/tsp/world/countries.html, n=29 and n=39. It solved both of those, in 35 seconds and 50 seconds.

For benchmarking on randomly generated matrices (which are more difficult than the typical matrices I can find online based on real data), I see times like this (some overhead probably presented by the profiler)

(these are averages, there is quite a bit of variance)
@n

11: .1 seconds (compared with the roughly ~1 minute of brute force)
12: .17 sec
13: .26 sec
14: .42 sec
15: .7 sec
16: 1.1 sec
24: 13 secs
32 55 secs

this is on my desktop pc, which is probably average in terms of speed. it's in python, if I rewrote it in C (and if i was good enough to rewrite it in C), I could probably make it go much much faster.

I of course need to test bigger datasets, but even if it messes up somewhere I am still very proud of what I have accomplished doing this stuff (my life has revolved around it for the last 3 months... ive been obsessed).

I do think I still have a couple ways in mind to make it perform faster and lose less memory (it uses a lot). Right now it will soon approach the point where my 6gb of ram is not enough.


Here are some other ways people are solving TSP.

https://github.com/DiegoVicen/ntnu-som

The basic idea is to use a self-organing map (unsupervised neural network model).

You should share your code with us and explain your approach! While building code is nice, writing and explaining your method should deepen your understanding of your algorithm. Most likely, you're applying techniques that people have already thought about.

Acrofales
Profile Joined August 2010
Spain18344 Posts
February 10 2018 08:16 GMT
#18874
On February 10 2018 14:36 Neshapotamus wrote:
Show nested quote +
On February 10 2018 09:33 travis wrote:
So, I still have been going hard on working to find a reasonable exact solver for the TSP, and even if I haven't solved it, I have improved my results to a point where I feel they are pretty impressive.

I tested it 1000 times vs a brute force solver at n=9 and it matched the brute force all 1000 times, I tested it 100 times vs a good greedy solver I found online for n = 20 and it beat or tied (almost always beat) the greedy solver 100/100 times.

I tested it on two of the data sets here http://www.math.uwaterloo.ca/tsp/world/countries.html, n=29 and n=39. It solved both of those, in 35 seconds and 50 seconds.

For benchmarking on randomly generated matrices (which are more difficult than the typical matrices I can find online based on real data), I see times like this (some overhead probably presented by the profiler)

(these are averages, there is quite a bit of variance)
@n

11: .1 seconds (compared with the roughly ~1 minute of brute force)
12: .17 sec
13: .26 sec
14: .42 sec
15: .7 sec
16: 1.1 sec
24: 13 secs
32 55 secs

this is on my desktop pc, which is probably average in terms of speed. it's in python, if I rewrote it in C (and if i was good enough to rewrite it in C), I could probably make it go much much faster.

I of course need to test bigger datasets, but even if it messes up somewhere I am still very proud of what I have accomplished doing this stuff (my life has revolved around it for the last 3 months... ive been obsessed).

I do think I still have a couple ways in mind to make it perform faster and lose less memory (it uses a lot). Right now it will soon approach the point where my 6gb of ram is not enough.


Here are some other ways people are solving TSP.

https://github.com/DiegoVicen/ntnu-som

The basic idea is to use a self-organing map (unsupervised neural network model).

You should share your code with us and explain your approach! While building code is nice, writing and explaining your method should deepen your understanding of your algorithm. Most likely, your applying techniques that people have already thought about.


If you think you're really into something new, don't share. Depending on your goals, you can write a scientific article, or try to monetize your idea.

But for it to be really good you need to be better than state-of-the-art approaches (such as those self-organizing maps), and not just better than brute force and greedy approaches.

And it's a very popular problem to work on, so the competition is strong. I wouldn't get my hopes up that you have actually made a breakthrough. But it's always a (slight) possibility. However, if you haven't actually made a breakthrough, sharing with peers is indeed a great way to improve (it's also a great way if you have made a breakthrough, but then it's more important to first protect your idea from being stolen; assuming you care about getting credit for it).


supereddie
Profile Joined March 2011
Netherlands151 Posts
February 10 2018 08:56 GMT
#18875
On February 09 2018 08:09 WarSame wrote:
Show nested quote +
On February 08 2018 18:33 WolfintheSheep wrote:
On February 08 2018 11:41 WarSame wrote:
Well I figure if I can do this I can remove a substantial amount of code. Instead of opening, using, then closing the adapter I can just have it open the whole time, and use it when I want it. This means that I can make inline calls to the DB without either wrapping it in a pointless function or cluttering up my code. I'm wondering whether my proposal is bad design, though.

If I recall, you've asked similar questions before, and the general theme seems to be that you're putting a lot of undue emphasis on "decluttering" your code. Clean code should come naturally no matter what you're programming, and hacking functionality together is the opposite of that.

Long-short, always close your DB adapters. There may be niche cases where you will want to leave a connection open, but you should be able to clearly say why that's necessary from a system perspective.

Also, when you say "without...wrapping it in a pointless function", I hope you're just wording that poorly, because encapsulation is a fundamental aspect of OOP.

Yeah, I'm trying to learn how to code cleanly through this project, so sometimes I'm definitely going over the line.

By "wrapping it" I meant pointless functions like this:


boolean isAuthentic(String email, char[] password) throws NoSuchAlgorithmException {
AccountDbAdapter db = new AccountDbAdapter(getContext());
boolean isAuthentic = db.isAuthentic(email, password);
db.close();

return isAuthentic;
}


I would like to replace that with a single, in-line function call, maybe like:


boolean isAuthentic = Session.getAccountDbAdapter().isAuthentic(email, password)


Since I have functions like this fairly often it would save quite a lot of unnecessary code.

For me the easiest way to do this would be to think about testability: write unit tests. This should give you an idea where to put certain code.

"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
February 10 2018 15:03 GMT
#18876
That's a good way to look at it! I haven't unit tested my activities yet, so that poses an obstacle
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
ShoCkeyy
Profile Blog Joined July 2008
7815 Posts
Last Edited: 2018-02-10 18:18:02
February 10 2018 16:00 GMT
#18877
Nvm, there is more to this issue than just a reference not showing up...
Life?
Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
February 10 2018 20:54 GMT
#18878
On February 10 2018 17:16 Acrofales wrote:
Show nested quote +
On February 10 2018 14:36 Neshapotamus wrote:
On February 10 2018 09:33 travis wrote:
So, I still have been going hard on working to find a reasonable exact solver for the TSP, and even if I haven't solved it, I have improved my results to a point where I feel they are pretty impressive.

I tested it 1000 times vs a brute force solver at n=9 and it matched the brute force all 1000 times, I tested it 100 times vs a good greedy solver I found online for n = 20 and it beat or tied (almost always beat) the greedy solver 100/100 times.

I tested it on two of the data sets here http://www.math.uwaterloo.ca/tsp/world/countries.html, n=29 and n=39. It solved both of those, in 35 seconds and 50 seconds.

For benchmarking on randomly generated matrices (which are more difficult than the typical matrices I can find online based on real data), I see times like this (some overhead probably presented by the profiler)

(these are averages, there is quite a bit of variance)
@n

11: .1 seconds (compared with the roughly ~1 minute of brute force)
12: .17 sec
13: .26 sec
14: .42 sec
15: .7 sec
16: 1.1 sec
24: 13 secs
32 55 secs

this is on my desktop pc, which is probably average in terms of speed. it's in python, if I rewrote it in C (and if i was good enough to rewrite it in C), I could probably make it go much much faster.

I of course need to test bigger datasets, but even if it messes up somewhere I am still very proud of what I have accomplished doing this stuff (my life has revolved around it for the last 3 months... ive been obsessed).

I do think I still have a couple ways in mind to make it perform faster and lose less memory (it uses a lot). Right now it will soon approach the point where my 6gb of ram is not enough.


Here are some other ways people are solving TSP.

https://github.com/DiegoVicen/ntnu-som

The basic idea is to use a self-organing map (unsupervised neural network model).

You should share your code with us and explain your approach! While building code is nice, writing and explaining your method should deepen your understanding of your algorithm. Most likely, your applying techniques that people have already thought about.


If you think you're really into something new, don't share. Depending on your goals, you can write a scientific article, or try to monetize your idea.

But for it to be really good you need to be better than state-of-the-art approaches (such as those self-organizing maps), and not just better than brute force and greedy approaches.

And it's a very popular problem to work on, so the competition is strong. I wouldn't get my hopes up that you have actually made a breakthrough. But it's always a (slight) possibility. However, if you haven't actually made a breakthrough, sharing with peers is indeed a great way to improve (it's also a great way if you have made a breakthrough, but then it's more important to first protect your idea from being stolen; assuming you care about getting credit for it).




I would disagree about not sharing. Your idea and code is just one portion of a monetization strategy. If you had a novel solution, you still need to think about creating a product, execution of the product (how will you sell your solution), building a team, and supporting the product. Locking yourself up from feedback is probably the most dangerous strategy.

Here are some reasons why you should feel ok:
1. You can always patent it afterward (even after publishing)
2. You might have made a mistake.
3. No one is going to steal your idea. Afterall, you didn't really provide a proof to why your method is superior. No one is the space of looking at amateur solutions.
4. Feedback will refine your idea
5. Consensus from your peers is how you drive innovation forward and legitimize your novel approach.
phar
Profile Joined August 2011
United States1080 Posts
February 11 2018 18:50 GMT
#18879
Or the easier / cop out monetization strategy with being brilliant enough to beat state of the art tsp algorithm on your own:

Walk into a job paying >$500k/yr at BigCorp.
Who after all is today speaking about the destruction of the Armenians?
emperorchampion
Profile Blog Joined December 2008
Canada9496 Posts
February 11 2018 18:58 GMT
#18880
Well, when travis proves that P=NP I'm def gonna brag to all my friends that I knew about him on this website since 2008 .

In seriousness, it's awesome that you're invested in a problem and good luck with it!
TRUEESPORTS || your days as a respected member of team liquid are over
Prev 1 942 943 944 945 946 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Ryung 208
SortOf 170
ProTech122
Rex 15
StarCraft: Brood War
Hyuk 1198
Zeus 1029
Shuttle 705
Larva 309
Mini 235
Mong 182
actioN 163
EffOrt 147
Soma 132
Dewaltoss 131
[ Show more ]
Last 130
ZerO 101
Pusan 78
Leta 78
Sharp 49
ToSsGirL 48
yabsab 32
Bale 31
sorry 29
Yoon 24
hero 22
JYJ 7
NaDa 6
Noble 5
JulyZerg 4
Dota 2
XcaliburYe366
League of Legends
JimRising 504
Counter-Strike
byalli730
zeus480
Super Smash Bros
Westballz30
Other Games
Happy288
Pyrionflax273
B2W.Neo128
Livibee62
ZerO(Twitch)11
QueenE9
Organizations
StarCraft 2
TaKeTV571
Dota 2
PGL Dota 2 - Main Stream168
StarCraft: Brood War
UltimateBattle 17
StarCraft 2
ComeBackTV 1
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 14 non-featured ]
StarCraft 2
• 3DClanTV 120
• LUISG 24
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota276
League of Legends
• Jankos2089
Upcoming Events
HomeStory Cup
3m
Replay Cast
13h 3m
HomeStory Cup
1d
OSC
1d 2h
WardiTV Weekly
3 days
The PondCast
3 days
Replay Cast
4 days
CrankTV Team League
5 days
Replay Cast
5 days
CrankTV Team League
6 days
[ Show More ]
Replay Cast
6 days
RSL Revival
6 days
CranKy Ducklings
6 days
Afreeca Starleague
6 days
Snow vs Jaedong
YSC vs hero
Liquipedia Results

Completed

Escore Tournament S3: W1
Douyu Cup 2026
Murky Cup 2026

Ongoing

IPSL Spring 2026
Acropolis #4
CSL Season 21: Qualifier 2
SCTL 2026 Spring
HSC XXIX
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026

Upcoming

CSL 2026 Summer (S21)
Escore Tournament S3: W2
ASL Season 22:Wild Card Qualifier
CSLAN 4
Blizzard Classic Cup 2026
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Revival: Season 6
CranK Gathers Season 4: BW vs SC2 Team League
Light Tournament 2026
Eternal Conflict S2 Finale
Eternal Conflict S2 E3
Eternal Conflict S2 E2
Heroes Pulsing #3
Eternal Conflict S2 E1
FISSURE Playground #5
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
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 © 2026 TLnet. All Rights Reserved.