Category Algorithms

Vehicle Routing Problem: Variants and examples

Vehicle Routing Problem: Variants and examples

What are Vehicle Routing optimization Problems? The concept of Vehicle Routing Problem (VRP) is a generalization of the well-known Traveling Salesman Problem (TSP). Specifically, the VRP is a pure optimization problem whose objective is to determine the most efficient route.…

CUDA Tutorial – Blocks and grids

CUDA tutorial: Blocks and Grids

In the first part of the CUDA Tutorial, we mentioned the GPU’s smallest unit of execution, warps, the equivalent of a kernel on a CPU. However, warps alone cannot harness the full power of the GPU; you need to make…

CUDA Tutorial – Warp

Cuda Tutorial - Warp

What is CUDA? CUDA is the language used for programming on NVIDIA GPUs, it is vital for a large number of computing tasks, and yet it is a mystery to a large number of programmers. In this post, we attempt…

Introduction to Fuzzy Linear Programming

Introduction to Fuzzy Linear Programming

In two previous posts we introduced the basic concepts of Fuzzy Logic and linear programming with the Simplex method. As promised, in this post we are going to join these two concepts and introduce fuzzy linear programming. In many real-world…