Tagged Questions
The minimization tag has no wiki summary.
15
votes
5answers
2k views
Knight's Shortest Path Chess Question
I've been practicing for an upcoming programming competition and I have stumbled across a question that I am just completely bewildered at. However, I feel as though it's a concept I should learn now ...
11
votes
7answers
5k views
How to find minimum of nonlinear, multivariate function using Newton's method (code not linear algebra)
I'm trying to do some parameter estimation and want to choose parameter estimates that minimize the square error in a predicted equation over about 30 variables. If the equation were linear, I would ...
7
votes
5answers
374 views
Can a neural network be used to find a functions minimum(a)?
I had been interested in neural networks for a bit and thought about using one in python for a light project that compares various minimization techniques in a time domain (which is fastest).
Then I ...
6
votes
2answers
751 views
Android, ProGuard, and keepclasseswithmembernames
A common pattern in ProGuard configs for Android applications is to preserve custom View classes, since they are probably referenced only from layout XML instead of application code.
Upon project ...
6
votes
8answers
574 views
Minimization of f(x,y) where x and y are integers
I was wondering if anyone had any suggestions for minimizing a function, f(x,y), where x and y are integers. I have researched lots of minimization and optimization techniques, like BFGS and others ...
5
votes
1answer
287 views
Need Cost Minimization Algorithm for USPS Flat Rate Boxes
I have a client who ships fluids in USPS flat rate boxes. If you are unfamiliar with USPS flat rate boxes, they are boxes of a certain volume that ship regardless of weight. Anything that fits in the ...
4
votes
2answers
350 views
Faster/more efficient alternatives to Ruby's Marshal?
I'm looking for a drop-in replacement of Ruby's Marshal capability, which hopefully has one or more of the following advantages over Marshal:
faster serialization/deserialization
more concise (or ...
2
votes
0answers
75 views
Spanning tree that minimizes a dynamic 'metric'
Let us have a graph. When we remove an edge, 2 'cars' are created, one from each vertice of the edge. when these 2 cars meet they stop. The problem is to create a spanning tree so that the sum of the ...
2
votes
1answer
57 views
Implementing additional constraints in R's nnls
I am using the R interface to the Lawson-Hanson NNLS implementation of an algorithm for non-negative linear least squares that solves ||A x - b||^2 with the constraint that all elements of vector x ≥ ...
2
votes
2answers
59 views
Ruby on Rails2: is there a way to minimize css and js when in production mode?
js and css files can be pretty big in order to be human readable.
Is there some sort of gem that will minimize all the css and js upon running in production mode to decrease load times for the end ...
2
votes
2answers
35 views
Match one list into another with minimum error
I have two lists, A and B. A will be at most ~1000 elements, and B will be at most ~100 elements. I want to match every element of B to an element of A, such that the sum of the absolute differences ...
1
vote
1answer
71 views
minimizing boolean function heuristic for A* algorithm
I have to write a program in python which minimizes a boolean function, but the catch is that I have to use search algorithms for example A* or simpler algorithm BFS or something like that. I wrote a ...
1
vote
1answer
65 views
What is the difference between greedy and steepest algorithms?
I have slides where 2 versions of local search algorithms are compared: greedy and steepest.
Greedy:
generate solution x;
repeat
{
for each y in N(x) in random order
{
...
1
vote
4answers
126 views
Algorithm to do Minimization in Integer Programming
I understand that doing minimization in integer programming is a very complex problem. But what makes this problem so difficult?
If I were to (attempt) to write an algorithm to solve it, what ...
1
vote
3answers
137 views
Why would my minimum search (steepest decent) climb a hill?
I'm trying to minimize a discretized function using a method of steepest decent. This should be fairly straightforward, but I'm having trouble with the search 'climbing' out of any local minimum. ...
1
vote
5answers
194 views
Looking for a javascript optimizer/compressor
My apologies if I am using the wrong lingo. Please bear with the confused C programmer turned js programmer :)
I am looking for a tool that will read my javascript files that are in human readable ...
1
vote
0answers
165 views
Multidimensional minimization with the Gnu Scientific Library
So I have a problem with the multidimensional minimization procedures in the GSL (the one I'm trying to use is gsl_multimin_fdfminimizer_vector_bfgs2, but the others produce the same problem). I have ...
1
vote
0answers
28 views
can backtracking be avoided when trying to minimize the rectangle space that encloses rectangles of different integer shapes?
The abstraction of my problem is that in a cartesian plane there are a lot of rectangles. These rectangles have known integer sizes and must have integer coordinates(their abscissas are known and ...
0
votes
0answers
11 views
Decyphering letter substituted text
Given the letter frequencies of a cyphered (letter subsituted) text, and the letter frequencies of standard English, how does one match the two, in order to decypher the text?
The frequencies ...
0
votes
1answer
45 views
RIA application optimization & minimization
I have a huge ASP .NET MVC3 application with tons of js (almost all is jQuery plugins) and css bunches for each page. Some bunches is necessary for one page, some is common. Could you please advice me ...
0
votes
1answer
80 views
Good path minimization algorithm 2D in Java and VTK
I would like to find an algorithm for path minimization with some constraints in Java with VTK. As input I am going to give an area for the polygon which is constant, the center of mass of the ...
0
votes
1answer
129 views
Optimizing a 2 parameter distance function on line segments (ACM ICPC Regionals Elim.)
This problem is a subproblem of a problem posed in the ACM ICPC Kanpur Regionals Elimination Round:
Given 2 line segments bounded by the 2D points (Pa, Pb) and (Pc, Pd) respectively, find p and q (in ...
0
votes
4answers
569 views
Minimize html, doubts and questions
Minimizing html is the only section on Google's Page Speed where there is still room for improvement.
My site is all dynamic and the HTML is already Deflated so there is no reason to put any more ...
0
votes
3answers
468 views
How Can I minimize the HTML code by making it one line of code?
So I have made a web page of HTML, Inline CSS and JS. Since this page will be produced through JS function
opened.document.write();
I would like to put all the web page code into one line that can ...
0
votes
2answers
277 views
Compact-Framework: Minimise and restore isn't working
I've written an application with the following in the Program.cs:
rsCursor.Wait();
// Load the settings
rsAppConfig.LoadConfig("iVirtualDocket.exe.config");
fSplash ...
0
votes
2answers
530 views
Using GNU Scientific “multimin” to find all local minima
The GNU Scientific library has a multi-dimensional function minimization framework. However, its caveats explicitly says that when used on a function with several different local minima it just ...