3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-02 10:58:47 +00:00
z3/src/util/lp/lar_solution_signature.h
Christoph M. Wintersteiger d61b722b68 Partial cleanup of util/lp/*
2017-09-17 16:00:06 +01:00

28 lines
396 B
C++

/*++
Copyright (c) 2017 Microsoft Corporation
Module Name:
<name>
Abstract:
<abstract>
Author:
Lev Nachmanson (levnach)
Revision History:
--*/
#pragma once
#include "util/vector.h"
#include "util/debug.h"
#include "util/lp/lp_settings.h"
#include <unordered_map>
namespace lp {
typedef std::unordered_map<unsigned, non_basic_column_value_position> lar_solution_signature;
}