Skip to content
View orxfun's full-sized avatar

Block or report orxfun

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
orxfun/README.md

Hi, I'm Uğur Arıkan

👋 whoami

I am an operations research (OR) scientist, interested in optimization, algorithms and systems thinking & design.

me |> Middle East Technical University (Ankara)
   |> Singapore University of Technology and Design (Singapore)
   |> DHL Data & Analytics (Bonn)

| github | email | linkedin | cv | crates | nuget |

❤️ I like

I am very enthusiastic about all things OR; my interests include mathematical programming, optimization algorithms, networks, routing, multiobjective decision making and decision making under uncertainty.

I also like programming languages.

  • rust being my favorite ❤️🦀 after a nice transition, it is now an important part of my daily tasks. hoping and working for it to stay for a long time.
  • also frequently use c#, react and typescript, which I find comfortable 👍
  • and I am curiously and closely watching go, f#, zig and mojo 🤔

🎯 𝙸'𝚖 𝚞𝚙 𝚝𝚘

Goals evolve and change shape. There are two mature goals: (i) OR & rust, and (ii) concurrency. However, exciting side quests appear on the way and join. Current workflows can be summarized as follows.

OR & rust

Two things I am most experienced in and enthusiastic about. After working on optimization algorithms on various languages, I am convinced that rust is the perfect match. Obviously, its speed and memory safety play an important role on this. However, a factor which is at least as important is its powerful type system that allows us to be very productive while developing efficient polymorphic algorithms.

The main goal is to contribute to OR ecosystem in rust. There are different milestones. Current focus with highest priority is developing a mathematical modeling crate.

mathematical modeling

(wikipedia) Mathematical optimization is the selection of a best element, with regard to some criteria, from some set of available alternatives.

Alternatively, it is a mathematical representation of a decision problem; which provides us with the optimal decision when solved. Mathematical modeling is the translation of the real-world problem into mathematics.

Mathematical modelers use an almost standard syntax while writing the problem on paper, which is concise, expressive, composable and reusable.

When the mathematical modeling tool do not have these properties, the entire modeling and optimization process becomes less productive, hard to maintain and error prone. This is the current situation in rust. Hence, the goal is to develop an expressive, efficient and productive mathematical modeling crate for rust with the following features:

  • macro-free and concise api which does not require more lines than model-on-paper has
  • simple, solver agnostic, immutable, type safe
  • with a separation of model and data, and hence, enable abstraction over inputs
  • with reusable & composable model components
  • below is a demo in c# and here is the documentation

concurrent programming and parallel processing

This is an exciting and ongoing journey that started with working on pinned vectors; i.e., vectors with pinned elements guarantees.

see PinnedVec for the trait definition, and SplitVec and FixedVec for two implementations

When memory locations of elements do not implicitly change while the vector grows, providing memory safety in a concurrent program becomes much easier.

ConcurrentBag and ConcurrentOrderedBag are developed as two efficient concurrent grow-only collections aiming high performance concurrent collections.

Adding concurrent element safety through ConcurrentOption in addition to pinned element guarantees allows for a concurrent vector with grow & read & update functionalities, namely ConcurrentVec. The api of the concurrent vector will continue to grow with the objective to get closer to the standard vector and be its concurrent counterpart.

In another workstream, ConcurrentIter is defined. Considering concurrent iterator as a concurrent provider of inputs and concurrent bags as the collector of outputs, it has been straightforward to develop the parallel processing crate orx-parallel which is very efficient and conveniently configurable. But why do we need another crate while we have rayon:

  • because they are different which is great, orx-parallel approaches with a different perspective.
  • it is performant, simple and customizable per computation.
  • it is possible to abstract parallel runner which will hopefully lead to interesting strategies and experiments (see the related discussion).

self referential collections

This is another interesting topic in the intersection of OR and rust.

  • Self referential collections are often used as core data structures for algorithms.
  • The goal is to define sort of a core construct which would make it convenient to build and generate variants. SelfRefCol aims to fulfil this goal defining the collection variants and handling most of the work in providing safe and efficient storage where elements are referencing other elements.
  • Started working on the LinkedList which turned out to be very efficient with unique properties.
  • Currently working on efficient & flexible trees 🌴
  • Graphs are the next steps.

miscellaneous side quests

As mentioned, many interesting topics appear which either help to achieve the goals or improve the rust ecosystem, or both. Some of the crates resulting from these experiences are as follows:

  • orx-iterable ➛ Defines and implements Iterable, Collection and CollectionMut traits to represent types that can be iterated over multiple times.
  • orx-v ➛ Traits to unify all vectors!
  • orx-imp-vec ➛ ImpVec stands for immutable push vector 👿, it is a data structure which allows appending elements with a shared reference.
  • orx-priority-queue ➛ Priority queue traits and high performance d-ary heap implementations.
  • https://crates.io/crates/orx-pseudo-default ➛ PseudoDefault trait allows to create a cheap default instance of a type, which does not claim to be useful.

as you might guess, orx stands for all things OR.

blog

Writing my observations, experiences and opinions related to the development towards the goals in orxfun-notes. Also trying to submit the articles to this week in rust whenever it fits (twir is awesome).

Mathematical Modeling Demo

knapsack

mathematical modeling in action 🔎

knapsack

Pinned Loading

  1. orx-priority-queue orx-priority-queue Public

    Priority queue traits and efficient d-ary heap implementations.

    Rust 3 1

  2. orx-linked-list orx-linked-list Public

    A linked list implementation with unique features and an extended list of constant time methods providing high performance traversals and mutations.

    Rust 6

  3. orx-split-vec orx-split-vec Public

    An efficient dynamic capacity vector with pinned element guarantees.

    Rust 2 2

  4. orx-parallel orx-parallel Public

    A performant and configurable parallel computing library for computations defined as compositions of iterator methods.

    Rust 2

  5. orx-concurrent-vec orx-concurrent-vec Public

    A thread-safe, efficient and lock-free vector allowing concurrent grow, read and update operations.

    Rust 2

  6. orx-iterable orx-iterable Public

    Defines and implements Iterable, Collection and CollectionMut traits to represent types that can be iterated over multiple times.

    Rust 1