Tagged Questions
1
vote
6answers
73 views
How to store three small numbers into one double?
I have int A, B, C. And A is in range 0-9999, B is 0-99, C is 0-99.
Because the function must return only one double, I think of putting them all into one number. Otherwise I need to call function ...
1
vote
1answer
69 views
Efficient Calculation of an N-Dimensional Cross Product?
As per the title, is the best way to calculate the n-dimensional cross product just using the determinant definition and using the LU Decomposition method of doing as such or could you guys suggest a ...
4
votes
3answers
80 views
Folding multiple (discrete) operations into one (continuous) operation
For a simple example, suppose we're checking whether a char c is alphanumeric:
if (48 <= c && c <= 57 ||
65 <= c && c <= 90 ||
97 <= c && c <= 122)
{
...
0
votes
1answer
58 views
Which lerp implementation is for a compiler easier to optimise?
Which of these lerp implementations is for a compiler easier to optimise ?
A:
float lerp(float v0, float v1, float t) {
return v0+(v1-v0)*t;
}
B:
float lerp(float v0, float v1, float t) {
...
1
vote
1answer
78 views
Is the variation of Knapsack NP-Complete?
In the knapsack problem, the only constraint is that the total size of picked items is no larger than the total size of the package. We know the Knapsack problem is NP-Complete.
However, if we have ...
2
votes
2answers
115 views
Finding time and position of intersection of two moving, rotating bounding boxes
With an emphasis on finding the time (when the intersection starts), although the position is also important. The bounding boxes (not axis aligned) have a position, rotation, velocity, and angular ...
-2
votes
2answers
107 views
Most concise way of checking if a number falls betwen two other numbers?
Suppose I have three numbers. Two of them form a range between them. The last number, I want to check to see if it falls within that range. It's a simple caveat: the numbers that define the range's ...
1
vote
2answers
176 views
Deobfuscating C++ source code
In search for a c++ parser I recently stumbled across the project below. Within it there's a parser that seems extremely well suited to my needs, however I believe the author(s) have deliberately ...
5
votes
3answers
113 views
Will GCC leave arithmetic with fixed values for run-time or compile the output?
I am wondering if GCC will leave arithmetic with fixed values to be executed at run-time or if it will set it to it's answer, eg.
const float halfPi = M_PI/2;
Will it "boil down" the equation and ...
2
votes
1answer
71 views
Placing rectangular boxes in a bigger rectangular box
I have certain rectangular boxes of different sizes and a bigger rectangular box. I need to fit in the maximum number of boxes of different categories possible in the bigger box. A certain minimum ...
0
votes
1answer
54 views
On optimal packing of 11 squares inside square
I was wondering if one knows a suitable algorithm for the following problem.
We have been given 11 squares of side length 1. They can't overlap other squares. How small square can contain those ...
0
votes
2answers
164 views
Any faster algorithm to compute the number of divisors
The F series is defined as
F(0) = 1
F(1) = 1
F(i) = i * F(i - 1) * F(i - 2) for i > 1
The task is to find the number of different divisors for F(i)
This question is from Timus . I tried the ...
5
votes
6answers
242 views
Efficient computation of a power of 2
I have a requirement to compute k as the smallest power of 2 which is >= an integer value, n (n is always > 0)
currently I am using:
#define log2(x) log(x)/log(2)
#define round(x) (int)(x+0.5)
k = ...
0
votes
1answer
87 views
Find a path in a graph from a given pair of source and destination vertices , and disjoint with a given path
We're given an unweighted undirected graph G.
We're also given two vertices a, b and a path p.
Is there a way to find a path which is edge-disjoint with path p?
This problem is similar with finding ...
12
votes
1answer
207 views
Integer division by 7
Source my answer in:
Is this expression correct in c preprocessor
I'm a little bit out of my forte here, and I'm trying to understand how this particular optimization works.
As mentioned in the ...
1
vote
5answers
228 views
Is there a way to speed up the evaluation of the following expression? [closed]
I have profiled my program and it spends 20% of the CPU time basically evaluating the following expression:
abs(x) > abs(y)
where x,y are double-precision floating point variables.
Is there a ...
2
votes
5answers
222 views
(-1)^n exponentiation in c++
Consider a convergent serie in the form:
sum(((-1)^n)*something)
where n is the index of iteration (n goes from 1 to infinity).
If we implement direclty the formula, we have std::pow(-1, n) but ...
9
votes
4answers
363 views
I need faster floating point math for .NET C# (for multiplying and dividing big arrays)
I need fastest possible way to multiply and divide big arrays of data.
I've read this (wrote by Ben Voigt here):
.NET doesn't use MMX or SSE or AVX, as of the current version
(...)
...
1
vote
4answers
199 views
Math Algorithms
I'm trying to understand the concept of Algorithms and basically how they improve performance of a computer program.
So assume, I have to write a program which generates a list of numbers by,
...
0
votes
1answer
127 views
find the position of a point inside a triangle to have specific area for each part (2D)
Consider an in-plane Triangle (Black) with 3 edge points, (1,2,3).
The area of this triangle is considered to be A. Then for an arbitrary point inside the triangle and connecting this point to each ...
0
votes
1answer
52 views
Is there a math library that takes advantage of the new features in Visual C++ 2012
There are a number of new features for parallel programming in VS 2012 C++ compiler:
Auto-parallelizer
C++ Accelerated Massive Parallelism (AMP)
Task Parallelism
and more ...
I would like to see ...
1
vote
2answers
154 views
shorten large 14+ digit numbers
i'm using a weird proprietary scripting language for a project.
i need to provide a user with a large (14+ digit) number, which they will have to reenter into another system (for later data ...
4
votes
2answers
137 views
Finding MSB set of the maximal magnitude element in array
Given an array of len elements of type signed short it is to find a position of the Most Significant Bit set in the maximal absolute value element in the array. For example, if array L contains {-134, ...
2
votes
0answers
177 views
Solving Ackley Function with Hill Climbing Algorithm in C# [closed]
The question is solving Ackley Problem with Hill Climbing Algorithm,
first you can find enough information about Ackley problem here:
Ackley problem
and also complete information about Hill Climbing ...
10
votes
4answers
439 views
Using “sincos” in Java
In a lot of situations I not only need the sine, but also the cosine of the same parameter.
For C, there is the sincos function in the common unix m math library. And actually, at least on i386, this ...
-2
votes
1answer
282 views
How to perform Particle Swarm Optimization [closed]
We have been asked to do 5 or 6 iterations of particle swarm optimisation by hand for homework, but i don't really understand how and we were given no examples.
Would it be possible for someone to do ...
1
vote
1answer
81 views
Octave: which method is more efficient
I'm rather new to Octave, and using it to understand some machine learning algorithms, like the squared error cost function. The text I have says the proper vectorized forumula is:
J = (X * theta - ...
2
votes
2answers
83 views
Compiler optimal division for float
I am writing a function to affect the feel of a control and found that dividing by 15.9 was about right. My natural instinct is to change this to a divide by 16 because that can be optimised by the ...
0
votes
5answers
481 views
How to concatenate two integers in C
Stack Overflow has this question answered in many other languages, but not C. So I thought I'd ask, since I have the same issue.
How does one concatenate two integers in C?
Example:
x = 11;
y = ...
5
votes
1answer
87 views
Optimization: minimize painting errors
You are given an m*n grid, where each cell is marked either "b" or "w". You are also given black and white paints. You are allowed to use k strokes, each of any color (black OR white), a stroke is ...
0
votes
0answers
48 views
Balls and Bins Tossing Implementation
I am working with a project that we want to send X jobs to Y different servers, where X <= Y and where no job shall be placed on the same server.
This is for load balance (yes I know that there ...
0
votes
1answer
98 views
How to initialize Chromosomes in an Evolutionary Algorithm to solve an LP/ILP or general COS on real variables?
I am working on a Java framework for Optimization Problems. So far, I have implemented lp_solve and GLPK and therefore I can handle linear problems (LPs) and integer linear problems (ILPs). Now I want ...
0
votes
1answer
39 views
mathematica-optimization
I am trying to extract error values of s. The s value can be calculated by fitting an equation to an equality. The equation has know variables (a,b,c,e,i) which have a certain error associated.
i ...
7
votes
4answers
844 views
Comparing speed of Haskell and C for the computation of primes
I initially wrote this (brute force and inefficient) method of calculating primes with the intent of making sure that there was no difference in speed between using "if-then-else" versus guards in ...
2
votes
2answers
313 views
Shortest two disjoint paths; two sources and two destinations
We're given an unweighted undirected graph G = (V, E) where |V| <= 40,000 and |E| <= 106. We're also given four vertices a, b, a', b'. Is there a way to find two node-disjoint paths a -> a' and ...
6
votes
4answers
355 views
Algorithm for finding dead pixels in Javascript
I am trying to create an algorithm that detects and counts dead pixels from an intensity map in .csv format. My current approach is to divide the value of the pixel I am testing by the value of the ...
4
votes
4answers
142 views
How are math instructions implemented on hardware?
I'm looking for some sample code that "emulates" the most frequently used math instructions(addition,subtraction,multiplication,division) and will cover all steps that a hardware based cpu processor ...
1
vote
3answers
373 views
Make a number 1 if greater than 0 [closed]
I am trying to optimize some code, that seems simple but is giving me a hard time. So basically, I am trying to make a number the value 1, if it is greater than 0. The problem is that I don't want to ...
3
votes
2answers
226 views
Nearest-neighbor algorithm with directions (left / right / top / bottom)
Having n random points in 2D geometry, for each point p I need to find 4 (or less if not exists) closest points (qa,qb,qc,qd), where qa is the closest left-top point, qb is the closest right-top ...
3
votes
1answer
183 views
Area optimization algorithm
I'm having the requirement, to insert a specific amount of rectangles (which have a defined width but a random height) into another rectangle (which has a defined height and the same defined width as ...
2
votes
3answers
181 views
How to optimize division by 100?
I have a piece of code running into an loop, with a division by 100, which is reducing a little my fps count.
In majority of cases, is a int/uint type being divided by 100, resulting in a simple ...
5
votes
1answer
204 views
Minimizing distance to a weighted grid
Lets suppose you have a 1000x1000 grid of positive integer weights W.
We want to find the cell that minimizes the average weighted distance.to each cell.
The brute force way to do this would be to ...
4
votes
2answers
311 views
Overflow-safe modular addition and subtraction in C?
I'm implementing an algorithm in C that needs to do modular addition and subtraction quickly on unsigned integers and can handle overflow conditions correctly. Here's what I have now (which does ...
2
votes
1answer
204 views
matrix exponentiation method for runtime optimization
Can anyone please explain or suggest some good tutorial for the method of matrix exponentiation in order to optimize the solution of the problem :
great wall of byteland
The solution which I uploaded ...
5
votes
5answers
720 views
Faster modulus in C/C#?
Is there a trick for creating a faster integer modulus than the standard % operator for particular bases? For example, could power-of-two bases be more 'open' to hacking possibilities?
For my ...
1
vote
5answers
2k views
How to efficiently calculate the angle between two points?
I am trying to optimize the simulation function in my experiment so I can have more artificial brain-controlled agents running at a time. I profiled my code and found out that the big bottleneck in my ...
0
votes
1answer
70 views
Weight distribution
I am currently working with multi-objective problem with 3 objectives and I am using weighted sum approach, where weights on all objectives together should sum up to 1, I am also using 0.1 as a step, ...
1
vote
1answer
207 views
How to do this coordinate system operation more efficiently?
I'm making a 3D game, where the player's back should always be facing the camera and he should move in that direction. I didn't come to the "back facing the camera" part yet, but I believe that it ...
1
vote
2answers
121 views
Numerical optimization and minimization
Lets say I have a reference node R and several test nodes T1, T2.... Tn.
Any particular node has a set of properties Rp1, Rp2, ... Rpn and T1p1, T1p2, T1p3, ... T1pn, and T2p1, T2p2, T2p3, ... T2pn, ...
0
votes
0answers
68 views
Optimum math for aligning to Grid from array
This is completely hypothetical, as the way I have works fine for me, but I want to make sure the way I'm doing this is the best (or at least a good) way of doing it.
I have an array with data in ...
