⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timedialog.cpp

📁 蚁群算法是解决电力调配系统和商场供货系统问题的有效算法,这里提供了一种蚁群算法,供大家参考
💻 CPP
字号:
// TimeDialog.cpp : implementation file
//

#include "stdafx.h"
#include "acs.h"
#include "TimeDialog.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CTimeDialog dialog


CTimeDialog::CTimeDialog(CWnd* pParent /*=NULL*/)
	: CDialog(CTimeDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CTimeDialog)
	//m_RunTime=0.0;
	m_RunTime1 = 0.0;
	//}}AFX_DATA_INIT
}


void CTimeDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CTimeDialog)
	DDX_Text(pDX, IDC_RUNTIME, m_RunTime1);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CTimeDialog, CDialog)
	//{{AFX_MSG_MAP(CTimeDialog)
	ON_EN_CHANGE(IDC_RUNTIME, OnChangeRuntime)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CTimeDialog message handlers

void CTimeDialog::OnChangeRuntime() 
{
	// TODO: If this is a RICHEDIT control, the control will not
	// send this notification unless you override the CDialog::OnInitDialog()
	// function and call CRichEditCtrl().SetEventMask()
	// with the ENM_CHANGE flag ORed into the mask.
	
	// TODO: Add your control notification handler code here
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -