📄 ga_tspview.h
字号:
// GA_TSPView.h : interface of the CGA_TSPView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_GA_TSPVIEW_H__2FC92F3C_0E64_4A31_853D_089D5F1D342C__INCLUDED_)
#define AFX_GA_TSPVIEW_H__2FC92F3C_0E64_4A31_853D_089D5F1D342C__INCLUDED_
#include "GenAlg.h" // Added by ClassView
#include "Graph.h" // Added by ClassView
#include <vector>
#include <stdlib.h>
#include <time.h>
#include <algorithm>
using namespace std;
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CGA_TSPView : public CView
{
protected: // create from serialization only
CGA_TSPView();
DECLARE_DYNCREATE(CGA_TSPView)
// Attributes
public:
CGA_TSPDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CGA_TSPView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
virtual void OnInitialUpdate();
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CGA_TSPView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CGA_TSPView)
afx_msg BOOL OnEraseBkgnd(CDC* pDC);
afx_msg void OnStart();
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnCicle();
afx_msg void OnReal();
afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
HANDLE m_hThread;
CGenAlg GenAlg;
CGraph Graph;
double CalculateDistance(vector <int> Cities);
vector<CGenome> m_population;
public:
void StartGenAlg();
};
#ifndef _DEBUG // debug version in GA_TSPView.cpp
inline CGA_TSPDoc* CGA_TSPView::GetDocument()
{ return (CGA_TSPDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_GA_TSPVIEW_H__2FC92F3C_0E64_4A31_853D_089D5F1D342C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -