Applying a genetic algorithm to the quadratic assignment problem in C#

Some sample C# code on how a genetic algorithm can be applied to the quadratic assignment problem. The quadratic assignment problem (QAP) is a combinatorial optimization problem that models the following real-life problem: Given a set of n facilities and a set of n locations, specify a distance for each pair of locations and a …

Continue reading ‘Applying a genetic algorithm to the quadratic assignment problem in C#’ »

Enabling vertical scrolling of html in the Chromium web browser control

A short post comtaining some example XAML code on how to enable vertical scrolling in a WFP application containing a Scrollviewer command that uses the CEFsharp browser control. Step 1: Create a new WPF project Step 2: Install CEFsharp See this post on how to use NuGet to install CEFsharp: Using the CefSharp Chromium Web …

Continue reading ‘Enabling vertical scrolling of html in the Chromium web browser control’ »