mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
28 lines
396 B
C++
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;
|
|
}
|