• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 21:52
CET 03:52
KST 11:52
  • 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
ByuL: The Forgotten Master of ZvT28Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (Feb 16-22): MaxPax doubles0Weekly Cups (Feb 9-15): herO doubles up2ACS replaced by "ASL Season Open" - Starts 21/0258LiuLi Cup: 2025 Grand Finals (Feb 10-16)46Weekly Cups (Feb 2-8): Classic, Solar, MaxPax win2
StarCraft 2
General
MMOexp Diablo4 exploring the edges of swamps MMOexp FC26 rounds out the forward recommendations Terran AddOns placement How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game? Nexon's StarCraft game could be FPS, led by UMS maker
Tourneys
PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) Sparkling Tuna Cup - Weekly Open Tournament SEL Doubles (SC Evo Bimonthly) WardiTV Team League Season 10 RSL Season 4 announced for March-April
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 515 Together Forever Mutation # 514 Ulnar New Year Mutation # 513 Attrition Warfare
Brood War
General
Soma Explains: JD's Unrelenting Aggro vs FlaSh Recent recommended BW games TvZ is the most complete match up BGH Auto Balance -> http://bghmmr.eu/ ACS replaced by "ASL Season Open" - Starts 21/02
Tourneys
BWCL Season 64 Announcement The Casual Games of the Week Thread [Megathread] Daily Proleagues [LIVE] [S:21] ASL Season Open Day 1
Strategy
Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular?
Other Games
General Games
Online Quake Live Config Editor Tool Battle Aces/David Kim RTS Megathread Diablo 2 thread Nintendo Switch Thread Path of Exile
Dota 2
The Story of Wings Gaming 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 Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine UK Politics Mega-thread YouTube Thread Mexico's Drug War
Fan Clubs
The IdrA Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece [Req][Books] Good Fantasy/SciFi books Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Inside the Communication of …
TrAiDoS
Life Update and thoughts.
FuDDx
How do archons sleep?
8882
James Bond movies ranking - pa…
Topin
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2880 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
Poland17679 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
Poland4742 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
Poland17679 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
Poland4742 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
Canada6222 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
Germany11756 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
Norway8233 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
Spain18224 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 6h 9m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 257
Ketroc 1
StarCraft: Brood War
Sea 5848
GuemChi 1896
Artosis 731
Moletrap 8
Dota 2
monkeys_forever600
NeuroSwarm89
League of Legends
JimRising 678
Counter-Strike
Fnx 2247
taco 737
Super Smash Bros
hungrybox2039
Mew2King20
Heroes of the Storm
Khaldor179
Other Games
summit1g15654
C9.Mang0426
Maynarde176
JuggernautJason27
Organizations
Other Games
gamesdonequick920
Counter-Strike
PGL121
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Hupsaiya 113
• davetesta52
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift4149
• Rush630
Upcoming Events
Replay Cast
6h 9m
Wardi Open
9h 9m
Monday Night Weeklies
14h 9m
Replay Cast
21h 9m
Replay Cast
2 days
Replay Cast
2 days
The PondCast
3 days
KCM Race Survival
3 days
Replay Cast
3 days
Ultimate Battle
4 days
Light vs ZerO
[ Show More ]
Replay Cast
4 days
CranKy Ducklings
5 days
Replay Cast
5 days
Sparkling Tuna Cup
6 days
Replay Cast
6 days
Liquipedia Results

Completed

Acropolis #4 - TS5
PiG Sty Festival 7.0
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
Spring Cup 2026
WardiTV Winter 2026
Nations Cup 2026
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025

Upcoming

ASL Season 21: Qualifier #1
ASL Season 21: Qualifier #2
ASL Season 21
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
RSL Revival: Season 4
NationLESS Cup
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
FISSURE Playground #3
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
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.