Questions tagged [optimization]
Dictionary definition: "The act of making something as good as possible". For our purposes, that is desirable, but we might accept something that improves the situation, if not to the theoretical limit.
49 questions
0
votes
0
answers
8
views
JavaScript image lazy loading library that works based on src attribute
There are lots of libraries that use data- kind of attributes to specify the images. I'm looking for one that:
doesn't need any extra parameter except of class or even better a chosen selector ...
2
votes
1
answer
562
views
Travelling Salesman Problem solver?
I am looking for an open-source Travelling Salesman Problem solver that can do at least what Optimap was able to do:
bulk import a list of ≥500 addresses/coordinates (one per line)
compute the ...
1
vote
0
answers
59
views
Software to perform mathematical optimization using arbitrary precision numerics
I need to perform multidimensional line search and/or trust region optimization using arbitrary-precision numerical libraries such as GNU MP and GNU MPFR.
Are there any already written routines that ...
1
vote
2
answers
50
views
Is there some way to integrate different forums?
I am normally reading quora, stack exchange, subreddits, and discourse forums.
Is there a way to integrate all these feeds?
3
votes
1
answer
160
views
Optimization of regular expressions
Regular expressions can be non-optimal like the following:
/yes or no|yes and no/
The above can be simplified to:
/yes (?:or|and) no/
Does anybody know of software to optimize regular expressions?
1
vote
0
answers
26
views
What Python package can solve the following non-linear mixed integer program?
Since LaTeX does not work on this platform and I can not properly describe my problem without LaTeX, I am going to use a screenshot instead.
I have looked into scipy optimize and cvxopt but both are ...
1
vote
1
answer
140
views
Linux - C++ - Looking for tools to get nice Callgraph and others useful informations to do "reverse engineering" process to better understand a code
On Debian GNU/Linux, I need a nice callgraph from a C++ code. I would like to better understand the structure of the code, the time or number of calls and all others useful informations.
I tried "...
1
vote
1
answer
45
views
What's an engine good for 3D RPG development?
The task I want to accomplish: Create a 3D RPG by using an optimized 3D engine.
The requirements for the task: An engine that requires a good amount of coding knowledge, can handle 3D graphics with ...
1
vote
0
answers
27
views
Fastest way to detect number of faces in an image
I know how to detect number of human faces in an image using dlib and opencv in Python. But I want to do it for a lot of images so I want to do it as fast as possible.
Will using any other language (...
2
votes
0
answers
39
views
Oracle SQL query optimizer (for speed/efficiency)
I'm a data analyst (novice) who writes Oracle 18c SQL queries on a regular basis. I'm aware that my SQL queries are sometimes not structured in the most efficient way possible.
I have a variety of ...
1
vote
0
answers
41
views
Are there compilers that implement immunity-aware programming techniques?
Are there compilers with flags or directives to implement immunity-aware programming techniques such as
function token passing
data integrity verification and/or correction
function parameter ...
1
vote
1
answer
88
views
Python software or libraries for solving job scheduling problem
I have a scheduling scenario in which every time period has a cost. I need to select the time periods which will give me the least cost over a period of 24 hours. See below for an example of the ...
1
vote
0
answers
211
views
Tabu Search Heuristic Implementation in C#
I'm looking for a C# implementation of a TabuSearch Metaheuristic Framework.
Like the Basic Heuristic Implementation with interfaces to adapt to my needs for providing custom aspiration criteria and ...
0
votes
0
answers
25
views
Gratis MySql optimizer
I have gotten by until now with ensuing 3rd order norm and having good indexes & foreign keys.
Today an AJAX query is exceeding 30 seconds on a modest search (PHP builds JSON arrays for each ...
0
votes
0
answers
38
views
Is there any alternative to Tensorflow in Python which requires less storage space?
I've been trying to reduce the storage space needed to operate my company's wake-word detector such that it could fit into Raspberry Pi 3. The wake-word detector is using Mycroft Precise to automate ...