New research a ‘breakthrough for large-scale discrete optimization’
11–20 of 21 posts
Re: New research a ‘breakthrough for large-scale discrete optimization’
#12I skimmed through because it sounds fairly click-baity... From what I gather, they're claiming to have solved NP-complete problems to some degree with some abstract form algorithm? I'm genuinely interested, if anyone can explain what's going on...
Re: New research a ‘breakthrough for large-scale discrete optimization’
#13I skimmed through because it sounds fairly click-baity... From what I gather, they're claiming to have solved NP-complete problems to some degree with some abstract form algorithm? I'm genuinely interested, if anyone can explain what's going on...
Re: New research a ‘breakthrough for large-scale discrete optimization’
#14There's no claim to have changed the complexity class, so"exponentially faster" just means the problem is still exponentially in problem size, but the exponent is smaller.
From the looks of it, though, it is a nice result because it has pretty wide applicability.
Re: New research a ‘breakthrough for large-scale discrete optimization’
#15Title could also be "Researchers find a better heuristic for a class of exponentially scaling problems." There's no claim to have changed the complexity class, so"exponentially faster" just means the problem is still exponentially in problem size, but the exponent is smaller. From the looks of it, though, it is a nice result because it has pretty wide applicability.
I'm not sure, but I doubt this algorithm is "faster" than the previous one on a single processor.
(The article is drivel; I couldn't figure out what they were talking about either, until I looked at the paper)
Re: New research a ‘breakthrough for large-scale discrete optimization’
#16Re: New research a ‘breakthrough for large-scale discrete optimization’
#17Title could also be "Researchers find a better heuristic for a class of exponentially scaling problems." There's no claim to have changed the complexity class, so"exponentially faster" just means the problem is still exponentially in problem size, but the exponent is smaller. From the looks of it, though, it is a nice result because it has pretty wide applicability.
No, "exponentially faster" means exponentially faster with exponentially more hardware . Specifically, N processors can solve a problem of size N in O(log N) wall clock time, where the previous (serial) algorithm used O(N) wall clock time. Most programmers would say "more scalable" or "more parallel" rather than "faster", but the terminology makes sense and is standard in the context of the PRAM model of parallel com…
Re: New research a ‘breakthrough for large-scale discrete optimization’
#18I skimmed through because it sounds fairly click-baity... From what I gather, they're claiming to have solved NP-complete problems to some degree with some abstract form algorithm? I'm genuinely interested, if anyone can explain what's going on...
Re: New research a ‘breakthrough for large-scale discrete optimization’
#19I've seen two recent posts that mention 'exponentially faster '. Does this have a precise meaning? I could imagine it to mean making a non-exponential algorithm for a problem which only had exponential ones. Another interpretation could be making an algorithm with 2^n steps where previous ones took 2^(2n) steps making the improvement factor 2^n, but still resulting in an exponential time algorithm. Should we just acc…