New answers tagged optimization
Score of 0
0
votes
Implementing toy model as linear programming problem
You can't simultaneously respect all of your constraints and exactly balance relative increase in factory output. So you need to make up your mind about what to give up. One (seemingly) reasonable ...
Score of 7
7
votes
Accepted
Why is `std::pair<int, int>` not designed to be trivially copyable?
The checks for std::is_trivially_copyable fail because std::pair does not have a trivial copy-assignment operator. The defined operator does nothing more than this->first = other.first; this->...
Score of 2
2
votes
Spinning thread takes 20,000 CPU cycles to see atomic write on Xeon CPU
Two things inflate a figure like the 20000 cycles reported here, and both are worth ruling out before coherence traffic is blamed.
The first cause that inflates the figure is the resolution of the ...
Score of 0
0
votes
How to overcome TLE (time limit exceeded ) for python in CSES problem Counting rooms?
Although it is not good practice, on competitive programming sites like CSES, it is common to add the following line of code to the start of the program:
import sys
input = sys.stdin.readline
This ...
Score of 1
1
vote
Accepted
Thread optimized code has probabilistic stalling
Thanks to @Andreas Wenzel for pointing me in this direction. I just needed to update MinGW. I am not sure if this is correct, but apparently there was a bug in some of the versions https://sourceforge....
Score of 0
0
votes
How to delete from a sorted array without O(n)
JavaScript arrays actually allow you to accomplish deletion in O(logN), then traverse without hitting holes.
The delete keyword will create an empty slot which will be ignored when using array ...
Score of 0
0
votes
Optimization of fitting parameters of two coupled equations by using least-square method scipy
Fitting
Here is a simple example on how to fit such coupled curves.
First import required packages:
import numpy as np
import matplotlib.pyplot as plt
from scipy import stats, optimize
State your ...
Top 50 recent answers are included
Related Tags
optimization × 39887python × 7355
performance × 4438
c++ × 4129
algorithm × 2833
mysql × 2621
java × 2391
c × 2270
javascript × 1992
c# × 1961
r × 1908
sql × 1836
php × 1458
matlab × 1213
scipy × 1202
numpy × 1069
arrays × 1034
gcc × 846
query-optimization × 724
python-3.x × 682
database × 640
loops × 635
mathematical-optimization × 617
android × 614
pandas × 605